public enum CompressionMethod extends java.lang.Enum<CompressionMethod>
| Enum Constant and Description |
|---|
DEFLATE
DEFLATE method: data is stored compressed using the DEFLATE algorithm.
|
STORE
STORE method: data is stored without any compression.
|
| Modifier and Type | Method and Description |
|---|---|
static CompressionMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompressionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompressionMethod STORE
public static final CompressionMethod DEFLATE
public static CompressionMethod[] values()
for (CompressionMethod c : CompressionMethod.values()) System.out.println(c);
public static CompressionMethod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null