com.google.protobuf.ByteString.isBalanced()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(3.3k)|赞(0)|评价(0)|浏览(120)

本文整理了Java中com.google.protobuf.ByteString.isBalanced()方法的一些代码示例,展示了ByteString.isBalanced()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ByteString.isBalanced()方法的具体详情如下:
包路径:com.google.protobuf.ByteString
类名称:ByteString
方法名:isBalanced

ByteString.isBalanced介绍

[英]Return true if this ByteString is literal (a leaf node) or a flat-enough tree in the sense of RopeByteString.
[中]如果此ByteString是文本(叶节点)或RopeByteString意义上足够平坦的树,则返回true。

代码示例

代码示例来源:origin: osmandapp/Osmand

private void doBalance(ByteString root) {
 // BAP95: Insert balanced subtrees whole. This means the result might not
 // be balanced, leading to repeated rebalancings on concatenate. However,
 // these rebalancings are shallow due to ignoring balanced subtrees, and
 // relatively few calls to insert() result.
 if (root.isBalanced()) {
  insert(root);
 } else if (root instanceof RopeByteString) {
  RopeByteString rbs = (RopeByteString) root;
  doBalance(rbs.left);
  doBalance(rbs.right);
 } else {
  throw new IllegalArgumentException(
    "Has a new type of ByteString been created? Found " +
      root.getClass());
 }
}

代码示例来源:origin: com.google.protobuf/protobuf-java

private void doBalance(ByteString root) {
 // BAP95: Insert balanced subtrees whole. This means the result might not
 // be balanced, leading to repeated rebalancings on concatenate. However,
 // these rebalancings are shallow due to ignoring balanced subtrees, and
 // relatively few calls to insert() result.
 if (root.isBalanced()) {
  insert(root);
 } else if (root instanceof RopeByteString) {
  RopeByteString rbs = (RopeByteString) root;
  doBalance(rbs.left);
  doBalance(rbs.right);
 } else {
  throw new IllegalArgumentException(
    "Has a new type of ByteString been created? Found " +
      root.getClass());
 }
}

代码示例来源:origin: com.google.protobuf/protobuf-lite

private void doBalance(ByteString root) {
 // BAP95: Insert balanced subtrees whole. This means the result might not
 // be balanced, leading to repeated rebalancings on concatenate. However,
 // these rebalancings are shallow due to ignoring balanced subtrees, and
 // relatively few calls to insert() result.
 if (root.isBalanced()) {
  insert(root);
 } else if (root instanceof RopeByteString) {
  RopeByteString rbs = (RopeByteString) root;
  doBalance(rbs.left);
  doBalance(rbs.right);
 } else {
  throw new IllegalArgumentException(
    "Has a new type of ByteString been created? Found " +
      root.getClass());
 }
}

代码示例来源:origin: yeriomin/play-store-api

private void doBalance(ByteString root) {
 // BAP95: Insert balanced subtrees whole. This means the result might not
 // be balanced, leading to repeated rebalancings on concatenate. However,
 // these rebalancings are shallow due to ignoring balanced subtrees, and
 // relatively few calls to insert() result.
 if (root.isBalanced()) {
  insert(root);
 } else if (root instanceof RopeByteString) {
  RopeByteString rbs = (RopeByteString) root;
  doBalance(rbs.left);
  doBalance(rbs.right);
 } else {
  throw new IllegalArgumentException(
    "Has a new type of ByteString been created? Found " +
      root.getClass());
 }
}

代码示例来源:origin: WeAreFairphone/FP2-Launcher

private void doBalance(ByteString root) {
 // BAP95: Insert balanced subtrees whole. This means the result might not
 // be balanced, leading to repeated rebalancings on concatenate. However,
 // these rebalancings are shallow due to ignoring balanced subtrees, and
 // relatively few calls to insert() result.
 if (root.isBalanced()) {
  insert(root);
 } else if (root instanceof RopeByteString) {
  RopeByteString rbs = (RopeByteString) root;
  doBalance(rbs.left);
  doBalance(rbs.right);
 } else {
  throw new IllegalArgumentException(
    "Has a new type of ByteString been created? Found " +
      root.getClass());
 }
}

相关文章