public enum CompressPayload extends java.lang.Enum<CompressPayload>
| Modifier and Type | Method and Description |
|---|---|
static CompressPayload |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompressPayload[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompressPayload NONE
public static final CompressPayload RLE
public static final CompressPayload ZLIBFAST
public static final CompressPayload ZLIBHIGH
public static CompressPayload[] values()
for (CompressPayload c : CompressPayload.values()) System.out.println(c);
public static CompressPayload 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