public enum RFIDDataField extends Enum<RFIDDataField>
Enum Constant and Description |
---|
CRC
Include CRC in the output
|
DataLength
Include the data length in the output
|
EPC
Include EPC in the output
|
MemoryData
Include data in the selected memory bank in the output
|
NotUsed
Not used
|
PC
Include PC in the output
|
Modifier and Type | Method and Description |
---|---|
static RFIDDataField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RFIDDataField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RFIDDataField NotUsed
public static final RFIDDataField CRC
public static final RFIDDataField PC
public static final RFIDDataField EPC
public static final RFIDDataField MemoryData
public static final RFIDDataField DataLength
public static RFIDDataField[] values()
for (RFIDDataField c : RFIDDataField.values()) System.out.println(c);
public static RFIDDataField 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