public enum DataMatrixEncodeMode extends java.lang.Enum<DataMatrixEncodeMode>
DataMatrix encoder's encoding mode, default to AUTO
Enum Constant and Description |
---|
ASCII
Encodes one alphanumeric or two numeric characters per byte
|
AUTO
Automatically pick up the best encode mode for datamatrix encoding
|
C40
Uses C40 encoding.
|
CUSTOM
Encode with the encoding specified in BarCodeBuilder.CodeTextEncoding
|
FULL
Encode 8 bit values
|
TEXT
UUses TEXT encoding.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static DataMatrixEncodeMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataMatrixEncodeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataMatrixEncodeMode AUTO
Automatically pick up the best encode mode for datamatrix encoding
public static final DataMatrixEncodeMode ASCII
Encodes one alphanumeric or two numeric characters per byte
public static final DataMatrixEncodeMode FULL
Encode 8 bit values
public static final DataMatrixEncodeMode CUSTOM
Encode with the encoding specified in BarCodeBuilder.CodeTextEncoding
public static final DataMatrixEncodeMode C40
Uses C40 encoding. Encodes Upper-case alphanumeric, Lower case and special characters
public static final DataMatrixEncodeMode TEXT
UUses TEXT encoding. Encodes Lower-case alphanumeric, Upper case and special characters
public static DataMatrixEncodeMode[] values()
for (DataMatrixEncodeMode c : DataMatrixEncodeMode.values()) System.out.println(c);
public static DataMatrixEncodeMode 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 nullpublic int getValue()