public static enum CompressionFlags.Component extends Enum<CompressionFlags.Component>
| Enum Constant and Description |
|---|
COUNTS |
FREQUENCIES |
PAYLOADS |
POINTERS |
POSITIONS |
| Modifier and Type | Method and Description |
|---|---|
static CompressionFlags.Component |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompressionFlags.Component[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompressionFlags.Component FREQUENCIES
public static final CompressionFlags.Component POINTERS
public static final CompressionFlags.Component PAYLOADS
public static final CompressionFlags.Component COUNTS
public static final CompressionFlags.Component POSITIONS
public static CompressionFlags.Component[] values()
for (CompressionFlags.Component c : CompressionFlags.Component.values()) System.out.println(c);
public static CompressionFlags.Component valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null