public enum RFIDMemoryBank extends Enum<RFIDMemoryBank>
Enum Constant and Description |
---|
EPC
EPC bank
|
Reserved
Reserved bank
|
TID
TID bank
|
User
User bank
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static RFIDMemoryBank |
valueOf(int value) |
static RFIDMemoryBank |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RFIDMemoryBank[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RFIDMemoryBank Reserved
public static final RFIDMemoryBank EPC
public static final RFIDMemoryBank TID
public static final RFIDMemoryBank User
public static RFIDMemoryBank[] values()
for (RFIDMemoryBank c : RFIDMemoryBank.values()) System.out.println(c);
public static RFIDMemoryBank 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 getValue()
public static RFIDMemoryBank valueOf(int value)