Uses of Class
org.apache.lucene.index.VectorValues
-
Packages that use VectorValues Package Description org.apache.lucene.backward_codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.backward_codecs.lucene91 Lucene 9.1 file format.org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene92 Lucene 9.2 file format.org.apache.lucene.codecs.perfield Postings format that can delegate to different formats per-field.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.index.memory High-performance single-document main memory Apache Lucene fulltext search index.org.apache.lucene.search.highlight Highlighting search terms. -
-
Uses of VectorValues in org.apache.lucene.backward_codecs.lucene90
Subclasses of VectorValues in org.apache.lucene.backward_codecs.lucene90 Modifier and Type Class Description (package private) static class
Lucene90HnswVectorsReader.OffHeapVectorValues
Read the vector values from the index input.Methods in org.apache.lucene.backward_codecs.lucene90 that return VectorValues Modifier and Type Method Description VectorValues
Lucene90HnswVectorsReader. getVectorValues(java.lang.String field)
-
Uses of VectorValues in org.apache.lucene.backward_codecs.lucene91
Subclasses of VectorValues in org.apache.lucene.backward_codecs.lucene91 Modifier and Type Class Description (package private) static class
Lucene91HnswVectorsReader.OffHeapVectorValues
Read the vector values from the index input.Methods in org.apache.lucene.backward_codecs.lucene91 that return VectorValues Modifier and Type Method Description VectorValues
Lucene91HnswVectorsReader. getVectorValues(java.lang.String field)
-
Uses of VectorValues in org.apache.lucene.codecs
Subclasses of VectorValues in org.apache.lucene.codecs Modifier and Type Class Description private static class
KnnVectorsWriter.MergedVectorValues
View over multiple VectorValues supporting iterator-style access via DocIdMerger.Fields in org.apache.lucene.codecs declared as VectorValues Modifier and Type Field Description (package private) VectorValues
KnnVectorsWriter.VectorValuesSub. values
Methods in org.apache.lucene.codecs that return VectorValues Modifier and Type Method Description abstract VectorValues
KnnVectorsReader. getVectorValues(java.lang.String field)
Returns theVectorValues
for the givenfield
.Constructors in org.apache.lucene.codecs with parameters of type VectorValues Constructor Description VectorValuesSub(MergeState.DocMap docMap, VectorValues values)
-
Uses of VectorValues in org.apache.lucene.codecs.lucene92
Subclasses of VectorValues in org.apache.lucene.codecs.lucene92 Modifier and Type Class Description (package private) class
OffHeapVectorValues
Read the vector values from the index input.(package private) static class
OffHeapVectorValues.DenseOffHeapVectorValues
private static class
OffHeapVectorValues.EmptyOffHeapVectorValues
private static class
OffHeapVectorValues.SparseOffHeapVectorValues
Methods in org.apache.lucene.codecs.lucene92 that return VectorValues Modifier and Type Method Description VectorValues
Lucene92HnswVectorsReader. getVectorValues(java.lang.String field)
Methods in org.apache.lucene.codecs.lucene92 with parameters of type VectorValues Modifier and Type Method Description private static DocsWithFieldSet
Lucene92HnswVectorsWriter. writeVectorData(IndexOutput output, VectorValues vectors)
Writes the vector values to the output and returns a set of documents that contains vectors. -
Uses of VectorValues in org.apache.lucene.codecs.perfield
Methods in org.apache.lucene.codecs.perfield that return VectorValues Modifier and Type Method Description VectorValues
PerFieldKnnVectorsFormat.FieldsReader. getVectorValues(java.lang.String field)
-
Uses of VectorValues in org.apache.lucene.codecs.simpletext
Subclasses of VectorValues in org.apache.lucene.codecs.simpletext Modifier and Type Class Description private static class
SimpleTextKnnVectorsReader.SimpleTextVectorValues
Methods in org.apache.lucene.codecs.simpletext that return VectorValues Modifier and Type Method Description VectorValues
SimpleTextKnnVectorsReader. getVectorValues(java.lang.String field)
Methods in org.apache.lucene.codecs.simpletext with parameters of type VectorValues Modifier and Type Method Description private void
SimpleTextKnnVectorsWriter. writeVectorValue(VectorValues vectors)
-
Uses of VectorValues in org.apache.lucene.index
Subclasses of VectorValues in org.apache.lucene.index Modifier and Type Class Description private class
ExitableDirectoryReader.ExitableFilterAtomicReader.ExitableVectorValues
class
FilterVectorValues
Delegates all methods to a wrappedVectorValues
.private static class
VectorValuesWriter.BufferedVectorValues
(package private) static class
VectorValuesWriter.SortingVectorValues
Fields in org.apache.lucene.index declared as VectorValues Modifier and Type Field Description private VectorValues
VectorValuesWriter.SortingVectorValues. delegate
static VectorValues
VectorValues. EMPTY
Represents the lack of vector values.protected VectorValues
FilterVectorValues. in
Wrapped valuesMethods in org.apache.lucene.index that return VectorValues Modifier and Type Method Description VectorValues
CodecReader. getVectorValues(java.lang.String field)
VectorValues
DocValuesLeafReader. getVectorValues(java.lang.String field)
VectorValues
ExitableDirectoryReader.ExitableFilterAtomicReader. getVectorValues(java.lang.String field)
VectorValues
FilterLeafReader. getVectorValues(java.lang.String field)
abstract VectorValues
LeafReader. getVectorValues(java.lang.String field)
ReturnsVectorValues
for this field, or null if noVectorValues
were indexed.VectorValues
ParallelLeafReader. getVectorValues(java.lang.String fieldName)
Constructors in org.apache.lucene.index with parameters of type VectorValues Constructor Description ExitableVectorValues(VectorValues vectorValues)
FilterVectorValues(VectorValues in)
Sole constructorSortingVectorValues(VectorValues delegate, Sorter.DocMap sortMap)
-
Uses of VectorValues in org.apache.lucene.index.memory
Methods in org.apache.lucene.index.memory that return VectorValues Modifier and Type Method Description VectorValues
MemoryIndex.MemoryIndexReader. getVectorValues(java.lang.String fieldName)
-
Uses of VectorValues in org.apache.lucene.search.highlight
Methods in org.apache.lucene.search.highlight that return VectorValues Modifier and Type Method Description VectorValues
TermVectorLeafReader. getVectorValues(java.lang.String fieldName)
-