Module org.apache.lucene.core
Package org.apache.lucene.index
Class SlowCompositeCodecReaderWrapper.SlowCompositeKnnVectorsReaderWrapper.MergedFloatVectorValues
java.lang.Object
org.apache.lucene.index.KnnVectorValues
org.apache.lucene.index.FloatVectorValues
org.apache.lucene.index.SlowCompositeCodecReaderWrapper.SlowCompositeKnnVectorsReaderWrapper.MergedFloatVectorValues
- Enclosing class:
SlowCompositeCodecReaderWrapper.SlowCompositeKnnVectorsReaderWrapper
class SlowCompositeCodecReaderWrapper.SlowCompositeKnnVectorsReaderWrapper.MergedFloatVectorValues
extends FloatVectorValues
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.index.KnnVectorValues
KnnVectorValues.DocIndexIterator -
Field Summary
FieldsModifier and TypeFieldDescription(package private) final int(package private) final SlowCompositeCodecReaderWrapper.MergedDocIterator<FloatVectorValues> (package private) int(package private) final int(package private) final int[](package private) final SlowCompositeCodecReaderWrapper.DocValuesSub<?>[] -
Constructor Summary
ConstructorsConstructorDescriptionMergedFloatVectorValues(int dimension, int size, List<SlowCompositeCodecReaderWrapper.DocValuesSub<FloatVectorValues>> subs) -
Method Summary
Modifier and TypeMethodDescriptioncopy()Creates a new copy of thisKnnVectorValues.intReturn the dimension of the vectorsiterator()Create an iterator for this instance.intsize()Return the number of vectors for this field.float[]vectorValue(int ord) Return the vector value for the given vector ordinal which must be in [0, size() - 1], otherwise IndexOutOfBoundsException is thrown.Methods inherited from class org.apache.lucene.index.FloatVectorValues
checkField, fromFloats, getEncoding, scorerMethods inherited from class org.apache.lucene.index.KnnVectorValues
createDenseIterator, createSparseIterator, fromDISI, getAcceptOrds, getVectorByteLength, ordToDoc
-
Field Details
-
dimension
final int dimension -
size
final int size -
subs
-
iter
-
starts
final int[] starts -
lastSubIndex
int lastSubIndex
-
-
Constructor Details
-
MergedFloatVectorValues
MergedFloatVectorValues(int dimension, int size, List<SlowCompositeCodecReaderWrapper.DocValuesSub<FloatVectorValues>> subs)
-
-
Method Details
-
iterator
Description copied from class:KnnVectorValuesCreate an iterator for this instance.- Overrides:
iteratorin classKnnVectorValues
-
dimension
public int dimension()Description copied from class:KnnVectorValuesReturn the dimension of the vectors- Specified by:
dimensionin classKnnVectorValues
-
size
public int size()Description copied from class:KnnVectorValuesReturn the number of vectors for this field.- Specified by:
sizein classKnnVectorValues- Returns:
- the number of vectors returned by this iterator
-
copy
Description copied from class:KnnVectorValuesCreates a new copy of thisKnnVectorValues. This is helpful when you need to access different values at once, to avoid overwriting the underlying vector returned.- Specified by:
copyin classFloatVectorValues- Throws:
IOException
-
vectorValue
Description copied from class:FloatVectorValuesReturn the vector value for the given vector ordinal which must be in [0, size() - 1], otherwise IndexOutOfBoundsException is thrown. The returned array may be shared across calls.- Specified by:
vectorValuein classFloatVectorValues- Returns:
- the vector value
- Throws:
IOException
-