Package com.aspose.barcode.generation
Enum DataMatrixEccType
- java.lang.Object
-
- java.lang.Enum<DataMatrixEccType>
-
- com.aspose.barcode.generation.DataMatrixEccType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DataMatrixEccType>
public enum DataMatrixEccType extends java.lang.Enum<DataMatrixEccType>
Specify the type of the ECC to encode.
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
ECC_AUTO
public static final DataMatrixEccType ECC_AUTO
Specifies that encoded Ecc type is defined by default Reed-Solomon error correction or ECC 200.
-
ECC_000
public static final DataMatrixEccType ECC_000
Specifies that encoded Ecc type is defined ECC 000.
-
ECC_050
public static final DataMatrixEccType ECC_050
Specifies that encoded Ecc type is defined ECC 050.
-
ECC_080
public static final DataMatrixEccType ECC_080
Specifies that encoded Ecc type is defined ECC 080.
-
ECC_100
public static final DataMatrixEccType ECC_100
Specifies that encoded Ecc type is defined ECC 100.
-
ECC_140
public static final DataMatrixEccType ECC_140
Specifies that encoded Ecc type is defined ECC 140.
-
ECC_200
public static final DataMatrixEccType ECC_200
Specifies that encoded Ecc type is defined ECC 200. Recommended to use.
-
-
Method Detail
-
values
public static DataMatrixEccType[] 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 (DataMatrixEccType c : DataMatrixEccType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataMatrixEccType 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
-
getValue
public int getValue()
-
-