public enum Code128Emulation extends java.lang.Enum<Code128Emulation>
Enum Constant and Description |
---|
CODE_903
UCC/EAN-128 emulation.
|
CODE_904
UCC/EAN-128 emulation.
|
CODE_905
UCC/EAN-128 emulation.
|
NONE
No Code 128 emulation
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Code128Emulation |
valueOf(int value) |
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.
|
public static final Code128Emulation NONE
public static final Code128Emulation CODE_903
public static final Code128Emulation CODE_904
public static final Code128Emulation CODE_905
public static Code128Emulation[] values()
for (Code128Emulation c : Code128Emulation.values()) System.out.println(c);
public static Code128Emulation 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()
public static Code128Emulation valueOf(int value)