private static enum DecodedBitStreamParser.Mode extends java.lang.Enum<DecodedBitStreamParser.Mode>
Enum Constant and Description |
---|
ANSIX12_ENCODE |
ASCII_ENCODE |
BASE256_ENCODE |
C40_ENCODE |
ECI_ENCODE |
EDIFACT_ENCODE |
PAD_ENCODE |
TEXT_ENCODE |
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 PAD_ENCODE
public static final DecodedBitStreamParser.Mode ASCII_ENCODE
public static final DecodedBitStreamParser.Mode C40_ENCODE
public static final DecodedBitStreamParser.Mode TEXT_ENCODE
public static final DecodedBitStreamParser.Mode ANSIX12_ENCODE
public static final DecodedBitStreamParser.Mode EDIFACT_ENCODE
public static final DecodedBitStreamParser.Mode BASE256_ENCODE
public static final DecodedBitStreamParser.Mode ECI_ENCODE
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