Class SortedSetDocValues

Direct Known Subclasses:
FilterSortedSetDocValues, Lucene70DocValuesProducer.BaseSortedSetDocValues, Lucene80DocValuesProducer.BaseSortedSetDocValues, Lucene90DocValuesProducer.BaseSortedSetDocValues, MultiDocValues.MultiSortedSetDocValues, SingletonSortedSetDocValues, SortedSetDocValuesWriter.BufferedSortedSetDocValues, SortedSetDocValuesWriter.SortingSortedSetDocValues

public abstract class SortedSetDocValues extends DocValuesIterator
A multi-valued version of SortedDocValues.

Per-Document values in a SortedSetDocValues are deduplicated, dereferenced, and sorted into a dictionary of unique values. A pointer to the dictionary value (ordinal) can be retrieved for each document. Ordinals are dense and in increasing sorted order.

  • Field Details

    • NO_MORE_ORDS

      public static final long NO_MORE_ORDS
      When returned by nextOrd() it means there are no more ordinals for the document.
      See Also:
  • Constructor Details

    • SortedSetDocValues

      protected SortedSetDocValues()
      Sole constructor. (For invocation by subclass constructors, typically implicit.)
  • Method Details