EmptyDocValuesProducer
Abstract base class implementing a DocValuesProducer that has no doc values.
Functions
Checks consistency of this producer
Returns BinaryDocValues for this field. The returned instance need not be thread-safe: it will only be used by a single thread. The behavior is undefined if the doc values type of the given field is not DocValuesType.BINARY. The return value is never null.
Returns NumericDocValues for this field. The returned instance need not be thread-safe: it will only be used by a single thread. The behavior is undefined if the doc values type of the given field is not DocValuesType.NUMERIC. The return value is never null.
Returns a DocValuesSkipper for this field. The returned instance need not be thread-safe: it will only be used by a single thread. The return value is undefined if returns DocValuesSkipIndexType.NONE.
Returns SortedDocValues for this field. The returned instance need not be thread-safe: it will only be used by a single thread. The behavior is undefined if the doc values type of the given field is not DocValuesType.SORTED. The return value is never null.
Returns SortedNumericDocValues for this field. The returned instance need not be thread-safe: it will only be used by a single thread. The behavior is undefined if the doc values type of the given field is not DocValuesType.SORTED_NUMERIC. The return value is never null.
Returns SortedSetDocValues for this field. The returned instance need not be thread-safe: it will only be used by a single thread. The behavior is undefined if the doc values type of the given field is not DocValuesType.SORTED_SET. The return value is never null.