Package org.apache.lucene.util.bkd
Interface PointReader
-
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable
- All Known Implementing Classes:
HeapPointReader,OfflinePointReader
public interface PointReader extends java.io.CloseableOne pass iterator through all points previously written with aPointWriter, abstracting away whether points are read from (offline) disk or simple arrays in heap.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleannext()Returns false once iteration is done, else true.PointValuepointValue()Sets the packed value in the provided ByteRef
-
-
-
Method Detail
-
next
boolean next() throws java.io.IOExceptionReturns false once iteration is done, else true.- Throws:
java.io.IOException
-
pointValue
PointValue pointValue()
Sets the packed value in the provided ByteRef
-
-