public enum RFIDMode extends Enum<RFIDMode>
Enum Constant and Description |
---|
Inventory
Inventory operation that reads RFID EPC data
|
ReadTag
Operation that reads data from the selected memory bank
|
WriteTag
Operation that writes data to the selected memory bank
|
Modifier and Type | Method and Description |
---|---|
static RFIDMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RFIDMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RFIDMode Inventory
public static final RFIDMode ReadTag
public static final RFIDMode WriteTag
public static RFIDMode[] values()
for (RFIDMode c : RFIDMode.values()) System.out.println(c);
public static RFIDMode 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 null