public enum CodeType extends Enum<CodeType>
| Enum Constant and Description |
|---|
CODE_CACHELZ |
CODE_ENDFILE |
CODE_HUFFMAN |
CODE_LZ |
CODE_LZ2 |
CODE_REPEATLZ |
CODE_STARTFILE |
CODE_VM |
CODE_VMDATA |
| Modifier and Type | Method and Description |
|---|---|
static CodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeType CODE_HUFFMAN
public static final CodeType CODE_LZ
public static final CodeType CODE_LZ2
public static final CodeType CODE_REPEATLZ
public static final CodeType CODE_CACHELZ
public static final CodeType CODE_STARTFILE
public static final CodeType CODE_ENDFILE
public static final CodeType CODE_VM
public static final CodeType CODE_VMDATA
public static CodeType[] values()
for (CodeType c : CodeType.values()) System.out.println(c);
public static CodeType 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 nullCopyright © 2017. All rights reserved.