Package org.apache.lucene.util.packed
Enum PackedInts.Format
- All Implemented Interfaces:
Serializable
,Comparable<PackedInts.Format>
- Enclosing class:
- PackedInts
A format to write packed ints.
- NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCompact format, all bits are written contiguously.Deprecated. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic PackedInts.Format
byId
(int id) Get a format according to its ID.long
byteCount
(int packedIntsVersion, int valueCount, int bitsPerValue) Computes how many byte blocks are needed to storevalues
values of sizebitsPerValue
.int
getId()
Returns the ID of the format.boolean
isSupported
(int bitsPerValue) Tests whether the provided number of bits per value is supported by the format.int
longCount
(int packedIntsVersion, int valueCount, int bitsPerValue) Computes how many long blocks are needed to storevalues
values of sizebitsPerValue
.float
overheadPerValue
(int bitsPerValue) Returns the overhead per value, in bits.final float
overheadRatio
(int bitsPerValue) Returns the overhead ratio (overhead per value / bits per value
).static PackedInts.Format
Returns the enum constant of this type with the specified name.static PackedInts.Format[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PACKED
Compact format, all bits are written contiguously. -
PACKED_SINGLE_BLOCK
Deprecated.UsePACKED
instead.A format that may insert padding bits to improve encoding and decoding speed. Since this format doesn't support all possible bits per value, you should never use it directly, but rather usePackedInts.fastestFormatAndBits(int, int, float)
to find the format that best suits your needs.
-
-
Field Details
-
id
public final int id
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
byId
Get a format according to its ID. -
getId
public int getId()Returns the ID of the format. -
byteCount
public long byteCount(int packedIntsVersion, int valueCount, int bitsPerValue) Computes how many byte blocks are needed to storevalues
values of sizebitsPerValue
. -
longCount
public int longCount(int packedIntsVersion, int valueCount, int bitsPerValue) Computes how many long blocks are needed to storevalues
values of sizebitsPerValue
. -
isSupported
public boolean isSupported(int bitsPerValue) Tests whether the provided number of bits per value is supported by the format. -
overheadPerValue
public float overheadPerValue(int bitsPerValue) Returns the overhead per value, in bits. -
overheadRatio
public final float overheadRatio(int bitsPerValue) Returns the overhead ratio (overhead per value / bits per value
).
-
PACKED
instead.