Uses of Class
org.apache.lucene.index.SortedSetDocValues
Packages that use SortedSetDocValues
Package
Description
Codecs API: API for customization of the encoding and structure of the index.
Lucene 4.5 file format.
Code to maintain and access indices.
Code to search indices.
-
Uses of SortedSetDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return SortedSetDocValuesModifier and TypeMethodDescriptionabstract SortedSetDocValues
DocValuesProducer.getSortedSet
(FieldInfo field) ReturnsSortedSetDocValues
for this field.Method parameters in org.apache.lucene.codecs with type arguments of type SortedSetDocValuesModifier and TypeMethodDescriptionvoid
DocValuesConsumer.mergeSortedSetField
(FieldInfo fieldInfo, MergeState mergeState, List<SortedSetDocValues> toMerge) Merges the sortedset docvalues fromtoMerge
.Constructors in org.apache.lucene.codecs with parameters of type SortedSetDocValuesModifierConstructorDescriptionSortedSetDocsWithField
(SortedSetDocValues in, int maxDoc) Creates aBits
returning true if the document has a value -
Uses of SortedSetDocValues in org.apache.lucene.codecs.lucene45
Methods in org.apache.lucene.codecs.lucene45 that return SortedSetDocValues -
Uses of SortedSetDocValues in org.apache.lucene.index
Subclasses of SortedSetDocValues in org.apache.lucene.indexModifier and TypeClassDescriptionstatic class
Implements MultiSortedSetDocValues over n subs, using an OrdinalMapclass
Exposes multi-valued view over a single-valued instance.Fields in org.apache.lucene.index declared as SortedSetDocValuesModifier and TypeFieldDescriptionstatic final SortedSetDocValues
SortedSetDocValues.EMPTY
An empty SortedDocValues which returnsNO_MORE_ORDS
for every documentfinal SortedSetDocValues[]
MultiDocValues.MultiSortedSetDocValues.values
leaf valuesMethods in org.apache.lucene.index that return SortedSetDocValuesModifier and TypeMethodDescriptionabstract SortedSetDocValues
AtomicReader.getSortedSetDocValues
(String field) ReturnsSortedSetDocValues
for this field, or null if noSortedSetDocValues
were indexed for this field.FilterAtomicReader.getSortedSetDocValues
(String field) ParallelAtomicReader.getSortedSetDocValues
(String field) SegmentReader.getSortedSetDocValues
(String field) SlowCompositeReaderWrapper.getSortedSetDocValues
(String field) static SortedSetDocValues
MultiDocValues.getSortedSetValues
(IndexReader r, String field) Returns a SortedSetDocValues for a reader's docvalues (potentially doing extremely slow things).DocTermOrds.iterator
(AtomicReader reader) Returns a SortedSetDocValues view of this instance -
Uses of SortedSetDocValues in org.apache.lucene.search
Methods in org.apache.lucene.search that return SortedSetDocValuesModifier and TypeMethodDescriptionFieldCache.getDocTermOrds
(AtomicReader reader, String field) Checks the internal cache for an appropriate entry, and if none is found, reads the term values infield
and returns aDocTermOrds
instance, providing a method to retrieve the terms (as ords) per document.