Package org.apache.lucene.search
Class PointInSetQuery.Stream
- java.lang.Object
-
- org.apache.lucene.search.PointInSetQuery.Stream
-
- All Implemented Interfaces:
BytesRefIterator
- Enclosing class:
- PointInSetQuery
public abstract static class PointInSetQuery.Stream extends Object implements BytesRefIterator
Iterator of encoded point values.
-
-
Field Summary
-
Fields inherited from interface org.apache.lucene.util.BytesRefIterator
EMPTY
-
-
Constructor Summary
Constructors Constructor Description Stream()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract BytesRef
next()
Increments the iteration to the nextBytesRef
in the iterator.
-
-
-
Method Detail
-
next
public abstract BytesRef next()
Description copied from interface:BytesRefIterator
Increments the iteration to the nextBytesRef
in the iterator. Returns the resultingBytesRef
ornull
if the end of the iterator is reached. The returned BytesRef may be re-used across calls to next. After this method returns null, do not call it again: the results are undefined.- Specified by:
next
in interfaceBytesRefIterator
- Returns:
- the next
BytesRef
in the iterator ornull
if the end of the iterator is reached.
-
-