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