Uses of Class
org.apache.lucene.index.SortedSetDocValues
-
Packages that use SortedSetDocValues Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene45 Lucene 4.5 file format.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices. -
-
Uses of SortedSetDocValues in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return SortedSetDocValues Modifier and Type Method Description abstract SortedSetDocValues
DocValuesProducer. getSortedSet(FieldInfo field)
ReturnsSortedSetDocValues
for this field.Method parameters in org.apache.lucene.codecs with type arguments of type SortedSetDocValues Modifier and Type Method Description void
DocValuesConsumer. mergeSortedSetField(FieldInfo fieldInfo, MergeState mergeState, List<SortedSetDocValues> toMerge)
Merges the sortedset docvalues fromtoMerge
.Constructors in org.apache.lucene.codecs with parameters of type SortedSetDocValues Constructor Description SortedSetDocsWithField(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 Modifier and Type Method Description SortedSetDocValues
Lucene45DocValuesProducer. getSortedSet(FieldInfo field)
-
Uses of SortedSetDocValues in org.apache.lucene.index
Subclasses of SortedSetDocValues in org.apache.lucene.index Modifier and Type Class Description static class
MultiDocValues.MultiSortedSetDocValues
Implements MultiSortedSetDocValues over n subs, using an OrdinalMapclass
SingletonSortedSetDocValues
Exposes multi-valued view over a single-valued instance.Fields in org.apache.lucene.index declared as SortedSetDocValues Modifier and Type Field Description static SortedSetDocValues
SortedSetDocValues. EMPTY
An empty SortedDocValues which returnsNO_MORE_ORDS
for every documentSortedSetDocValues[]
MultiDocValues.MultiSortedSetDocValues. values
leaf valuesMethods in org.apache.lucene.index that return SortedSetDocValues Modifier and Type Method Description abstract SortedSetDocValues
AtomicReader. getSortedSetDocValues(String field)
ReturnsSortedSetDocValues
for this field, or null if noSortedSetDocValues
were indexed for this field.SortedSetDocValues
FilterAtomicReader. getSortedSetDocValues(String field)
SortedSetDocValues
ParallelAtomicReader. getSortedSetDocValues(String field)
SortedSetDocValues
SegmentReader. getSortedSetDocValues(String field)
SortedSetDocValues
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).SortedSetDocValues
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 SortedSetDocValues Modifier and Type Method Description SortedSetDocValues
FieldCache. 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.
-