Module org.apache.lucene.core
Package org.apache.lucene.index
Class SlowCompositeCodecReaderWrapper.SlowCompositePointsReaderWrapper
java.lang.Object
org.apache.lucene.codecs.PointsReader
org.apache.lucene.index.SlowCompositeCodecReaderWrapper.SlowCompositePointsReaderWrapper
- All Implemented Interfaces:
Closeable
,AutoCloseable
- Enclosing class:
- SlowCompositeCodecReaderWrapper
private static class SlowCompositeCodecReaderWrapper.SlowCompositePointsReaderWrapper
extends PointsReader
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final CodecReader[]
private final int[]
private final PointsReader[]
-
Constructor Summary
ConstructorsConstructorDescriptionSlowCompositePointsReaderWrapper
(CodecReader[] codecReaders, int[] docStarts) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks consistency of this reader.void
close()
ReturnPointValues
for the givenfield
.Methods inherited from class org.apache.lucene.codecs.PointsReader
getMergeInstance
-
Field Details
-
codecReaders
-
readers
-
docStarts
private final int[] docStarts
-
-
Constructor Details
-
SlowCompositePointsReaderWrapper
SlowCompositePointsReaderWrapper(CodecReader[] codecReaders, int[] docStarts)
-
-
Method Details
-
close
- Throws:
IOException
-
checkIntegrity
Description copied from class:PointsReader
Checks consistency of this reader.Note that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files.
- Specified by:
checkIntegrity
in classPointsReader
- Throws:
IOException
-
getValues
Description copied from class:PointsReader
ReturnPointValues
for the givenfield
. The behavior is undefined if the given field doesn't have points enabled on itsFieldInfo
.- Specified by:
getValues
in classPointsReader
- Throws:
IOException
-