public enum LzoAlgorithm extends Enum<LzoAlgorithm>
Enum Constant and Description |
---|
LZO1 |
LZO1A |
LZO1B |
LZO1C |
LZO1F |
LZO1X |
LZO1Y |
LZO1Z |
LZO2A |
Modifier and Type | Method and Description |
---|---|
static LzoAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LzoAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LzoAlgorithm LZO1
public static final LzoAlgorithm LZO1A
public static final LzoAlgorithm LZO1B
public static final LzoAlgorithm LZO1C
public static final LzoAlgorithm LZO1F
public static final LzoAlgorithm LZO1X
public static final LzoAlgorithm LZO1Y
public static final LzoAlgorithm LZO1Z
public static final LzoAlgorithm LZO2A
public static LzoAlgorithm[] values()
for (LzoAlgorithm c : LzoAlgorithm.values()) System.out.println(c);
public static LzoAlgorithm 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