public enum DataMatrixEccType extends java.lang.Enum<DataMatrixEccType>
Specify the type of the ECC to encode.
Enum Constant and Description |
---|
ECC_000
Specifies that encoded Ecc type is defined ECC 000.
|
ECC_050
Specifies that encoded Ecc type is defined ECC 050.
|
ECC_080
Specifies that encoded Ecc type is defined ECC 080.
|
ECC_100
Specifies that encoded Ecc type is defined ECC 100.
|
ECC_140
Specifies that encoded Ecc type is defined ECC 140.
|
ECC_200
Specifies that encoded Ecc type is defined ECC 200.
|
ECC_AUTO
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 ECC_AUTO
Specifies that encoded Ecc type is defined by default Reed-Solomon error correction or ECC 200.
public static final DataMatrixEccType ECC_000
Specifies that encoded Ecc type is defined ECC 000.
public static final DataMatrixEccType ECC_050
Specifies that encoded Ecc type is defined ECC 050.
public static final DataMatrixEccType ECC_080
Specifies that encoded Ecc type is defined ECC 080.
public static final DataMatrixEccType ECC_100
Specifies that encoded Ecc type is defined ECC 100.
public static final DataMatrixEccType ECC_140
Specifies that encoded Ecc type is defined ECC 140.
public static final DataMatrixEccType ECC_200
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()