public enum MacroCharacter extends java.lang.Enum<MacroCharacter>
Enum Constant and Description |
---|
MACRO_05
05 Macro craracter is added to barcode data in first position.
|
MACRO_06
06 Macro craracter is added to barcode data in first position.
|
NONE
None of Macro Characters are added to barcode data
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static MacroCharacter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MacroCharacter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MacroCharacter NONE
public static final MacroCharacter MACRO_05
public static final MacroCharacter MACRO_06
public static MacroCharacter[] values()
for (MacroCharacter c : MacroCharacter.values()) System.out.println(c);
public static MacroCharacter 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()