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 SortedSetDocValuesDocValuesProducer. getSortedSet(FieldInfo field)ReturnsSortedSetDocValuesfor this field.Method parameters in org.apache.lucene.codecs with type arguments of type SortedSetDocValues Modifier and Type Method Description voidDocValuesConsumer. 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 aBitsreturning 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 SortedSetDocValuesLucene45DocValuesProducer. 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 classMultiDocValues.MultiSortedSetDocValuesImplements MultiSortedSetDocValues over n subs, using an OrdinalMapclassSingletonSortedSetDocValuesExposes multi-valued view over a single-valued instance.Fields in org.apache.lucene.index declared as SortedSetDocValues Modifier and Type Field Description static SortedSetDocValuesSortedSetDocValues. EMPTYAn empty SortedDocValues which returnsNO_MORE_ORDSfor every documentSortedSetDocValues[]MultiDocValues.MultiSortedSetDocValues. valuesleaf valuesMethods in org.apache.lucene.index that return SortedSetDocValues Modifier and Type Method Description abstract SortedSetDocValuesAtomicReader. getSortedSetDocValues(String field)ReturnsSortedSetDocValuesfor this field, or null if noSortedSetDocValueswere indexed for this field.SortedSetDocValuesFilterAtomicReader. getSortedSetDocValues(String field)SortedSetDocValuesParallelAtomicReader. getSortedSetDocValues(String field)SortedSetDocValuesSegmentReader. getSortedSetDocValues(String field)SortedSetDocValuesSlowCompositeReaderWrapper. getSortedSetDocValues(String field)static SortedSetDocValuesMultiDocValues. getSortedSetValues(IndexReader r, String field)Returns a SortedSetDocValues for a reader's docvalues (potentially doing extremely slow things).SortedSetDocValuesDocTermOrds. 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 SortedSetDocValuesFieldCache. getDocTermOrds(AtomicReader reader, String field)Checks the internal cache for an appropriate entry, and if none is found, reads the term values infieldand returns aDocTermOrdsinstance, providing a method to retrieve the terms (as ords) per document.
-