Uses of Enum Class
org.apache.lucene.util.packed.PackedInts.Format
Packages that use PackedInts.Format
-
Uses of PackedInts.Format in org.apache.lucene.util.packed
Methods in org.apache.lucene.util.packed that return PackedInts.FormatModifier and TypeMethodDescriptionstatic PackedInts.Format
PackedInts.Format.byId
(int id) Get a format according to its ID.PackedInts.FormatAndBits.format()
Returns the value of theformat
record component.protected abstract PackedInts.Format
PackedInts.Writer.getFormat()
The format used to serialize values.static PackedInts.Format
Returns the enum constant of this class with the specified name.static PackedInts.Format[]
PackedInts.Format.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.lucene.util.packed with parameters of type PackedInts.FormatModifier and TypeMethodDescriptionstatic PackedInts.Decoder
PackedInts.getDecoder
(PackedInts.Format format, int version, int bitsPerValue) Get aPackedInts.Decoder
.static PackedInts.Encoder
PackedInts.getEncoder
(PackedInts.Format format, int version, int bitsPerValue) Get anPackedInts.Encoder
.static PackedInts.Mutable
PackedInts.getMutable
(int valueCount, int bitsPerValue, PackedInts.Format format) Same asPackedInts.getMutable(int, int, float)
with a pre-computed number of bits per value and format.static PackedInts.ReaderIterator
PackedInts.getReaderIteratorNoHeader
(DataInput in, PackedInts.Format format, int version, int valueCount, int bitsPerValue, int mem) Expert: Restore aPackedInts.ReaderIterator
from a stream without reading metadata at the beginning of the stream.static PackedInts.Writer
PackedInts.getWriterNoHeader
(DataOutput out, PackedInts.Format format, int valueCount, int bitsPerValue, int mem) Expert: Create a packed integer array writer for the given output, format, value count, and number of bits per value.Constructors in org.apache.lucene.util.packed with parameters of type PackedInts.FormatModifierConstructorDescriptionFormatAndBits
(PackedInts.Format format, int bitsPerValue) Creates an instance of aFormatAndBits
record class.