Enum DecodedBitStreamParser.Mode
- java.lang.Object
-
- java.lang.Enum<DecodedBitStreamParser.Mode>
-
- com.google.zxing.datamatrix.decoder.DecodedBitStreamParser.Mode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DecodedBitStreamParser.Mode>
- Enclosing class:
- DecodedBitStreamParser
private static enum DecodedBitStreamParser.Mode extends java.lang.Enum<DecodedBitStreamParser.Mode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANSIX12_ENCODE
ASCII_ENCODE
BASE256_ENCODE
C40_ENCODE
ECI_ENCODE
EDIFACT_ENCODE
PAD_ENCODE
TEXT_ENCODE
-
Constructor Summary
Constructors Modifier Constructor Description private
Mode()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
PAD_ENCODE
public static final DecodedBitStreamParser.Mode PAD_ENCODE
-
ASCII_ENCODE
public static final DecodedBitStreamParser.Mode ASCII_ENCODE
-
C40_ENCODE
public static final DecodedBitStreamParser.Mode C40_ENCODE
-
TEXT_ENCODE
public static final DecodedBitStreamParser.Mode TEXT_ENCODE
-
ANSIX12_ENCODE
public static final DecodedBitStreamParser.Mode ANSIX12_ENCODE
-
EDIFACT_ENCODE
public static final DecodedBitStreamParser.Mode EDIFACT_ENCODE
-
BASE256_ENCODE
public static final DecodedBitStreamParser.Mode BASE256_ENCODE
-
ECI_ENCODE
public static final DecodedBitStreamParser.Mode ECI_ENCODE
-
-
Method Detail
-
values
public static DecodedBitStreamParser.Mode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DecodedBitStreamParser.Mode c : DecodedBitStreamParser.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DecodedBitStreamParser.Mode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-