Package com.aspose.barcode.generation
Enum Code128Emulation
- java.lang.Object
-
- java.lang.Enum<Code128Emulation>
-
- com.aspose.barcode.generation.Code128Emulation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Code128Emulation>
public enum Code128Emulation extends java.lang.Enum<Code128Emulation>
Function codewords for Code 128 emulation. Applied for MicroPDF417 only. Ignored for PDF417 and MacroPDF417 barcodes.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
static Code128Emulation
valueOf(int value)
Returns the enum constant of this type with the specified name.static Code128Emulation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Code128Emulation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Code128Emulation NONE
No Code 128 emulation
-
CODE_903
public static final Code128Emulation CODE_903
UCC/EAN-128 emulation. Text compactionmode implied.
-
CODE_904
public static final Code128Emulation CODE_904
UCC/EAN-128 emulation. Numeric compactionmode implied.
-
CODE_905
public static final Code128Emulation CODE_905
UCC/EAN-128 emulation. Implied 01 AI and 14-digit codetext.
-
-
Method Detail
-
values
public static Code128Emulation[] 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 (Code128Emulation c : Code128Emulation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Code128Emulation 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()
-
valueOf
public static Code128Emulation valueOf(int value)
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:
value
- 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
-
-