Module org.apache.lucene.core
Package org.apache.lucene.util.hnsw
Interface RandomAccessVectorValues.Bytes
- All Superinterfaces:
RandomAccessVectorValues
- All Known Subinterfaces:
RandomAccessQuantizedByteVectorValues
- All Known Implementing Classes:
OffHeapByteVectorValues,OffHeapByteVectorValues,OffHeapByteVectorValues.DenseOffHeapVectorValues,OffHeapByteVectorValues.DenseOffHeapVectorValues,OffHeapByteVectorValues.EmptyOffHeapVectorValues,OffHeapByteVectorValues.EmptyOffHeapVectorValues,OffHeapByteVectorValues.SparseOffHeapVectorValues,OffHeapByteVectorValues.SparseOffHeapVectorValues,OffHeapQuantizedByteVectorValues,OffHeapQuantizedByteVectorValues.DenseOffHeapVectorValues,OffHeapQuantizedByteVectorValues.EmptyOffHeapVectorValues,OffHeapQuantizedByteVectorValues.SparseOffHeapVectorValues
- Enclosing interface:
RandomAccessVectorValues
Byte vector values.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.lucene.util.hnsw.RandomAccessVectorValues
RandomAccessVectorValues.Bytes, RandomAccessVectorValues.Floats -
Method Summary
Modifier and TypeMethodDescriptioncopy()Creates a new copy of thisRandomAccessVectorValues.default intReturns the vector byte length, defaults to dimension multiplied by byte sizebyte[]vectorValue(int targetOrd) Return the vector value indexed at the given ordinal.Methods inherited from interface org.apache.lucene.util.hnsw.RandomAccessVectorValues
dimension, getAcceptOrds, getSlice, ordToDoc, size
-
Method Details
-
copy
Description copied from interface:RandomAccessVectorValuesCreates a new copy of thisRandomAccessVectorValues. This is helpful when you need to access different values at once, to avoid overwriting the underlying vector returned.- Specified by:
copyin interfaceRandomAccessVectorValues- Throws:
IOException
-
vectorValue
Return the vector value indexed at the given ordinal.- Parameters:
targetOrd- a valid ordinal, ≥ 0 and <RandomAccessVectorValues.size().- Throws:
IOException
-
getVectorByteLength
default int getVectorByteLength()Returns the vector byte length, defaults to dimension multiplied by byte size- Specified by:
getVectorByteLengthin interfaceRandomAccessVectorValues
-