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.BytesRefIteratorEMPTY
 
- 
 - 
Constructor SummaryConstructors Constructor Description Stream()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract BytesRefnext()Increments the iteration to the nextBytesRefin the iterator.
 
- 
- 
- 
Method Detail- 
nextpublic abstract BytesRef next() Description copied from interface:BytesRefIteratorIncrements the iteration to the nextBytesRefin the iterator. Returns the resultingBytesRefornullif 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:
- nextin interface- BytesRefIterator
- Returns:
- the next BytesRefin the iterator ornullif the end of the iterator is reached.
 
 
- 
 
-