java.lang.Object
org.bitlap.roaringbitmap.art.LeafNodeIterator
-
构造器概要
构造器构造器说明LeafNodeIterator(Art art, boolean reverse, Containers containers) constructorLeafNodeIterator(Art art, boolean reverse, Containers containers, long from) constructorLeafNodeIterator(Art art, Containers containers) constructor -
方法概要
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait从接口继承的方法 java.util.Iterator
forEachRemaining
-
构造器详细资料
-
LeafNodeIterator
constructor- 参数:
art- the ARTcontainers- the containers
-
LeafNodeIterator
constructor- 参数:
art- the ARTreverse- false: ascending order,true: the descending ordercontainers- the containers
-
LeafNodeIterator
constructor- 参数:
art- the ARTreverse- false: ascending order,true: the descending ordercontainers- the containersfrom- starting upper/lower bound
-
-
方法详细资料
-
hasNext
public boolean hasNext() -
next
-
remove
public void remove() -
seek
public void seek(long boundval) Move this iterator to the leaf that contains `boundval`. If no leaf contains `boundval`, then move to the next largest (on forward iterators or next smallest (on backwards iterators). -
peekNext
Return the next leaf without advancing the iterator.- 返回:
- the next leaf
-