Class Lucene45DocValuesConsumer

java.lang.Object
org.apache.lucene.codecs.DocValuesConsumer
org.apache.lucene.codecs.lucene45.Lucene45DocValuesConsumer
All Implemented Interfaces:
Closeable, AutoCloseable

public class Lucene45DocValuesConsumer extends DocValuesConsumer implements Closeable
  • Field Details

    • DELTA_COMPRESSED

      public static final int DELTA_COMPRESSED
      Compressed using packed blocks of ints.
      See Also:
    • GCD_COMPRESSED

      public static final int GCD_COMPRESSED
      Compressed by computing the GCD.
      See Also:
    • TABLE_COMPRESSED

      public static final int TABLE_COMPRESSED
      Compressed by giving IDs to unique values.
      See Also:
    • BINARY_FIXED_UNCOMPRESSED

      public static final int BINARY_FIXED_UNCOMPRESSED
      Uncompressed binary, written directly (fixed length).
      See Also:
    • BINARY_VARIABLE_UNCOMPRESSED

      public static final int BINARY_VARIABLE_UNCOMPRESSED
      Uncompressed binary, written directly (variable length).
      See Also:
    • BINARY_PREFIX_COMPRESSED

      public static final int BINARY_PREFIX_COMPRESSED
      Compressed binary with shared prefixes
      See Also:
    • SORTED_SET_WITH_ADDRESSES

      public static final int SORTED_SET_WITH_ADDRESSES
      Standard storage for sorted set values with 1 level of indirection: docId -> address -> ord.
      See Also:
    • SORTED_SET_SINGLE_VALUED_SORTED

      public static final int SORTED_SET_SINGLE_VALUED_SORTED
      Single-valued sorted set values, encoded as sorted values, so no level of indirection: docId -> ord.
      See Also:
  • Constructor Details

  • Method Details