Enum Mailmark2DType
- java.lang.Object
-
- java.lang.Enum<Mailmark2DType>
-
- com.aspose.barcode.complexbarcode.Mailmark2DType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Mailmark2DType>
public enum Mailmark2DType extends java.lang.Enum<Mailmark2DType>
2D Mailmark Type defines size of Data Matrix barcode
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Mailmark2DType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Mailmark2DType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTO
public static final Mailmark2DType AUTO
Auto determine
-
TYPE_7
public static final Mailmark2DType TYPE_7
24 x 24 modules
-
TYPE_9
public static final Mailmark2DType TYPE_9
32 x 32 modules
-
TYPE_29
public static final Mailmark2DType TYPE_29
16 x 48 modules
-
-
Method Detail
-
values
public static Mailmark2DType[] 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 (Mailmark2DType c : Mailmark2DType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Mailmark2DType 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
-
-