| Enum Constant and Description |
|---|
CUSTOM_1
First custom slot
|
CUSTOM_2
Second custom slot
|
CUSTOM_3
Third custom slot
|
GREEN_BARCODE
Green barcode (default)
|
GREEN_BARCODE_NUMERIC
Bright green, barcode, with numeric data below
|
RED_TARGET
Red barcode (Shopevolution)
|
| Modifier and Type | Method and Description |
|---|---|
static ImageEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageEnum GREEN_BARCODE
public static final ImageEnum RED_TARGET
public static final ImageEnum GREEN_BARCODE_NUMERIC
public static final ImageEnum CUSTOM_1
public static final ImageEnum CUSTOM_2
public static final ImageEnum CUSTOM_3
public static ImageEnum[] values()
for (ImageEnum c : ImageEnum.values()) System.out.println(c);
public static ImageEnum 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 null