Package | Description |
---|---|
org.apache.cassandra.utils.btree |
Modifier and Type | Method and Description |
---|---|
static BTree.Dir |
BTree.Dir.asc(boolean asc) |
static BTree.Dir |
BTree.Dir.desc(boolean desc) |
BTree.Dir |
BTree.Dir.invert() |
static BTree.Dir |
BTree.Dir.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BTree.Dir[] |
BTree.Dir.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static <V> java.lang.Iterable<V> |
BTree.iterable(java.lang.Object[] btree,
BTree.Dir dir) |
static <V> java.lang.Iterable<V> |
BTree.iterable(java.lang.Object[] btree,
int lb,
int ub,
BTree.Dir dir) |
static <V> java.util.Iterator<V> |
BTree.iterator(java.lang.Object[] btree,
BTree.Dir dir) |
static <V> java.util.Iterator<V> |
BTree.iterator(java.lang.Object[] btree,
int lb,
int ub,
BTree.Dir dir) |
protected BTreeSearchIterator<V,V> |
BTreeSet.slice(BTree.Dir dir) |
protected BTreeSearchIterator<V,V> |
BTreeSet.BTreeRange.slice(BTree.Dir dir) |
protected BTreeSearchIterator<V,V> |
BTreeSet.BTreeDescRange.slice(BTree.Dir dir) |
static <K,V> BTreeSearchIterator<K,V> |
BTree.slice(java.lang.Object[] btree,
java.util.Comparator<? super K> comparator,
BTree.Dir dir)
Returns an Iterator over the entire tree
|
static <K,V extends K> |
BTree.slice(java.lang.Object[] btree,
java.util.Comparator<? super K> comparator,
K start,
boolean startInclusive,
K end,
boolean endInclusive,
BTree.Dir dir) |
static <K,V extends K> |
BTree.slice(java.lang.Object[] btree,
java.util.Comparator<? super K> comparator,
K start,
K end,
BTree.Dir dir) |
Constructor and Description |
---|
BTreeSearchIterator(java.lang.Object[] btree,
java.util.Comparator<? super K> comparator,
BTree.Dir dir) |
Copyright © 2020 The Apache Software Foundation