public enum ScannerDataFormat extends Enum<ScannerDataFormat>
| Enum Constant and Description |
|---|
barcodeData |
barcodeId |
timestamp |
| Modifier and Type | Method and Description |
|---|---|
static ScannerDataFormat |
fromValue(int value) |
int |
getCode() |
String |
toString() |
static ScannerDataFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScannerDataFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerDataFormat barcodeData
public static final ScannerDataFormat barcodeId
public static final ScannerDataFormat timestamp
public static ScannerDataFormat[] values()
for (ScannerDataFormat c : ScannerDataFormat.values()) System.out.println(c);
public static ScannerDataFormat 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 int getCode()
public String toString()
toString in class Enum<ScannerDataFormat>public static ScannerDataFormat fromValue(int value) throws IllegalArgumentException
IllegalArgumentException