public enum TagInfoId extends Enum<TagInfoId> implements IEnumType
| Enum Constant and Description |
|---|
Antenna
The antenna ID.
|
EPC
The EPC (Electronic Product Code) bytes of the tag.
|
Frequency
The frequency of the tag.
|
PC
The PC (Protocol Control) bytes of the tag.
|
PhaseData
The phase data associated with the tag.
|
Q
The Q value associated with the tag.
|
RoundCount
The round count associated with the tag.
|
RSSI
The RSSI (Received Signal Strength Indicator) of the tag.
|
TagCount
The total tag count.
|
TID
The TID (Tag Identification) bytes of the tag.
|
Timestamp
The timestamp of the tag.
|
UserData
The user-specified data.
|
XPC
The XPC (Extended Protocol Control) bytes of the tag.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode()
Get the enum code value
|
String |
toString()
Overrides the toString method to return the textual description of the tag information ID.
|
static TagInfoId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TagInfoId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagInfoId Antenna
public static final TagInfoId Frequency
public static final TagInfoId RSSI
public static final TagInfoId PC
public static final TagInfoId EPC
public static final TagInfoId TID
public static final TagInfoId RoundCount
public static final TagInfoId Q
public static final TagInfoId TagCount
public static final TagInfoId XPC
public static final TagInfoId UserData
public static final TagInfoId PhaseData
public static final TagInfoId Timestamp
public static TagInfoId[] values()
for (TagInfoId c : TagInfoId.values()) System.out.println(c);
public static TagInfoId 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()