当前位置: 首页>>代码示例>>Java>>正文


Java Key.compareTo方法代码示例

本文整理汇总了Java中org.apache.accumulo.core.data.Key.compareTo方法的典型用法代码示例。如果您正苦于以下问题:Java Key.compareTo方法的具体用法?Java Key.compareTo怎么用?Java Key.compareTo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.accumulo.core.data.Key的用法示例。


在下文中一共展示了Key.compareTo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getMinUniqueID

import org.apache.accumulo.core.data.Key; //导入方法依赖的package包/类
public Key getMinUniqueID() {
  Iterator<Key> iter = uids.iterator();
  Key min = null;
  while (iter.hasNext()) {
    Key t = (Key) iter.next();
    if (log.isDebugEnabled()) {
      log.debug("OR set member: " + t);
    }
    if (t != null) {
      if (min == null) {
        min = t;
      } else if (t.compareTo(min) < 0) {
        min = t;
      }
    }
  }
  return min;
}
 
开发者ID:apache,项目名称:accumulo-wikisearch,代码行数:19,代码来源:BooleanLogicTreeNode.java

示例2: compare

import org.apache.accumulo.core.data.Key; //导入方法依赖的package包/类
private int compare(Key k1, Key k2) {
  if (k1 != null && k2 != null) {
    return k1.compareTo(k2);
  } else if (k1 == null && k2 == null) {
    return 0;
  } else if (k1 == null) { // in this case, null is considered bigger b/c it's closer to the end of the table.
    return 1;
  } else {
    return -1;
  }
}
 
开发者ID:apache,项目名称:accumulo-wikisearch,代码行数:12,代码来源:BooleanLogicIterator.java


注:本文中的org.apache.accumulo.core.data.Key.compareTo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。