public enum DeflateMode extends java.lang.Enum<DeflateMode>
| Enum Constant and Description |
|---|
FORMAT_NSIS
Process NSIS data stream (only for decoding).
|
FORMAT_ZLIB
Process zlib data stream (only for decoding).
|
OPTION_HISTORY64K
Use 64k history.
|
OPTION_KEEP_HISTORY
Do not reset history during encoding/decoding.
|
OPTION_RESTART_AFTER_EOS
Restart block processing after EOS.
|
| Modifier and Type | Method and Description |
|---|---|
static DeflateMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeflateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeflateMode FORMAT_ZLIB
public static final DeflateMode FORMAT_NSIS
public static final DeflateMode OPTION_HISTORY64K
public static final DeflateMode OPTION_KEEP_HISTORY
public static final DeflateMode OPTION_RESTART_AFTER_EOS
public static DeflateMode[] values()
for (DeflateMode c : DeflateMode.values()) System.out.println(c);
public static DeflateMode 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