public enum DataMatrixEccType extends java.lang.Enum<DataMatrixEccType>
Specify the type of the ECC to encode.
Enum Constant and Description |
---|
Ecc000
Specifies that encoded Ecc type is defined ECC 000.
|
Ecc050
Specifies that encoded Ecc type is defined ECC 050.
|
Ecc080
Specifies that encoded Ecc type is defined ECC 080.
|
Ecc100
Specifies that encoded Ecc type is defined ECC 100.
|
Ecc140
Specifies that encoded Ecc type is defined ECC 140.
|
Ecc200
Specifies that encoded Ecc type is defined ECC 200.
|
EccAuto
Specifies that encoded Ecc type is defined by default Reed-Solomon error correction or ECC 200.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static DataMatrixEccType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataMatrixEccType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataMatrixEccType EccAuto
Specifies that encoded Ecc type is defined by default Reed-Solomon error correction or ECC 200.
public static final DataMatrixEccType Ecc000
Specifies that encoded Ecc type is defined ECC 000.
public static final DataMatrixEccType Ecc050
Specifies that encoded Ecc type is defined ECC 050.
public static final DataMatrixEccType Ecc080
Specifies that encoded Ecc type is defined ECC 080.
public static final DataMatrixEccType Ecc100
Specifies that encoded Ecc type is defined ECC 100.
public static final DataMatrixEccType Ecc140
Specifies that encoded Ecc type is defined ECC 140.
public static final DataMatrixEccType Ecc200
Specifies that encoded Ecc type is defined ECC 200. Recommended to use.
public static DataMatrixEccType[] values()
for (DataMatrixEccType c : DataMatrixEccType.values()) System.out.println(c);
public static DataMatrixEccType 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()