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