private static enum DecodedBitStreamParser.Mode extends java.lang.Enum<DecodedBitStreamParser.Mode>
Enum Constant and Description |
---|
ALPHA |
ALPHA_SHIFT |
LOWER |
MIXED |
PUNCT |
PUNCT_SHIFT |
Modifier and Type | Method and Description |
---|---|
static DecodedBitStreamParser.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DecodedBitStreamParser.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecodedBitStreamParser.Mode ALPHA
public static final DecodedBitStreamParser.Mode LOWER
public static final DecodedBitStreamParser.Mode MIXED
public static final DecodedBitStreamParser.Mode PUNCT
public static final DecodedBitStreamParser.Mode ALPHA_SHIFT
public static final DecodedBitStreamParser.Mode PUNCT_SHIFT
public static DecodedBitStreamParser.Mode[] values()
for (DecodedBitStreamParser.Mode c : DecodedBitStreamParser.Mode.values()) System.out.println(c);
public static DecodedBitStreamParser.Mode 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