本文整理汇总了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;
}
示例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;
}
}