public static enum Command.HRI_POSITION extends Enum<Command.HRI_POSITION>
Enum Constant and Description |
---|
ABOVE
Above barcode
|
ABOVE_AND_BELOW
Print above and below barcode
|
BELOW
Below barcode
|
NO_PRINT
Do not print
|
Modifier and Type | Method and Description |
---|---|
byte |
getValue() |
static Command.HRI_POSITION |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Command.HRI_POSITION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command.HRI_POSITION NO_PRINT
public static final Command.HRI_POSITION ABOVE
public static final Command.HRI_POSITION BELOW
public static final Command.HRI_POSITION ABOVE_AND_BELOW
public static Command.HRI_POSITION[] values()
for (Command.HRI_POSITION c : Command.HRI_POSITION.values()) System.out.println(c);
public static Command.HRI_POSITION valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic byte getValue()