Module org.apache.lucene.core
Class OffHeapFloatVectorValues.EmptyOffHeapVectorValues
java.lang.Object
org.apache.lucene.index.KnnVectorValues
org.apache.lucene.index.FloatVectorValues
org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues
org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues.EmptyOffHeapVectorValues
- All Implemented Interfaces:
HasIndexSlice
- Enclosing class:
OffHeapFloatVectorValues
private static class OffHeapFloatVectorValues.EmptyOffHeapVectorValues
extends OffHeapFloatVectorValues
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues
OffHeapFloatVectorValues.DenseOffHeapVectorValuesNested classes/interfaces inherited from class org.apache.lucene.index.KnnVectorValues
KnnVectorValues.DocIndexIterator -
Field Summary
Fields inherited from class org.apache.lucene.codecs.lucene95.OffHeapFloatVectorValues
byteSize, dimension, flatVectorsScorer, lastOrd, similarityFunction, size, slice, value -
Constructor Summary
ConstructorsConstructorDescriptionEmptyOffHeapVectorValues(int dimension, FlatVectorsScorer flatVectorsScorer, VectorSimilarityFunction similarityFunction) -
Method Summary
Modifier and TypeMethodDescriptioncopy()Creates a new copy of thisKnnVectorValues.intReturn the dimension of the vectorsgetAcceptOrds(Bits acceptDocs) Returns a Bits accepting docs accepted by the argument and having a vector valueiterator()Create an iterator for this instance.scorer(float[] query) Return aVectorScorerfor the given query vector and the currentFloatVectorValues.intsize()Return the number of vectors for this field.float[]vectorValue(int targetOrd) 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.codecs.lucene95.OffHeapFloatVectorValues
getSlice, loadMethods inherited from class org.apache.lucene.index.FloatVectorValues
checkField, fromFloats, getEncodingMethods inherited from class org.apache.lucene.index.KnnVectorValues
createDenseIterator, createSparseIterator, fromDISI, getVectorByteLength, ordToDoc
-
Constructor Details
-
EmptyOffHeapVectorValues
public EmptyOffHeapVectorValues(int dimension, FlatVectorsScorer flatVectorsScorer, VectorSimilarityFunction similarityFunction)
-
-
Method Details
-
dimension
public int dimension()Description copied from class:KnnVectorValuesReturn the dimension of the vectors- Overrides:
dimensionin classOffHeapFloatVectorValues
-
size
public int size()Description copied from class:KnnVectorValuesReturn the number of vectors for this field.- Overrides:
sizein classOffHeapFloatVectorValues- 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
-
vectorValue
public float[] vectorValue(int targetOrd) 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.- Overrides:
vectorValuein classOffHeapFloatVectorValues- Returns:
- the vector value
-
iterator
Description copied from class:KnnVectorValuesCreate an iterator for this instance.- Overrides:
iteratorin classKnnVectorValues
-
getAcceptOrds
Description copied from class:KnnVectorValuesReturns a Bits accepting docs accepted by the argument and having a vector value- Overrides:
getAcceptOrdsin classKnnVectorValues
-
scorer
Description copied from class:FloatVectorValuesReturn aVectorScorerfor the given query vector and the currentFloatVectorValues.- Overrides:
scorerin classFloatVectorValues- Parameters:
query- the query vector- Returns:
- a
VectorScorerinstance or null
-