public enum ImageState extends java.lang.Enum<ImageState>
ImageState is an enumeration defining constants for different states
SoftSpot can be in.| Enum Constant and Description |
|---|
DECODED
Barcode has been recently decoded
|
NORMAL
Normal state, nothing scanned yet
|
| Modifier and Type | Method and Description |
|---|---|
static ImageState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageState NORMAL
public static final ImageState DECODED
public static ImageState[] values()
for (ImageState c : ImageState.values()) System.out.println(c);
public static ImageState 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