com.thingmagic
Enum TagReadData.TagMetadataFlag

java.lang.Object
  extended by java.lang.Enum<TagReadData.TagMetadataFlag>
      extended by com.thingmagic.TagReadData.TagMetadataFlag
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TagReadData.TagMetadataFlag>
Enclosing class:
TagReadData

public static enum TagReadData.TagMetadataFlag
extends java.lang.Enum<TagReadData.TagMetadataFlag>

Flags that indicate the metadata stored in this structure


Enum Constant Summary
ALL
           
ANTENNAID
           
BRAND_IDENTIFIER
           
DATA
           
FREQUENCY
           
GEN2_LF
           
GEN2_Q
           
GEN2_TARGET
           
GPIO_STATUS
           
NONE
           
PHASE
           
PROTOCOL
           
READCOUNT
           
RSSI
           
TIMESTAMP
           
 
Method Summary
static TagReadData.TagMetadataFlag valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TagReadData.TagMetadataFlag[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final TagReadData.TagMetadataFlag NONE

READCOUNT

public static final TagReadData.TagMetadataFlag READCOUNT

RSSI

public static final TagReadData.TagMetadataFlag RSSI

ANTENNAID

public static final TagReadData.TagMetadataFlag ANTENNAID

FREQUENCY

public static final TagReadData.TagMetadataFlag FREQUENCY

TIMESTAMP

public static final TagReadData.TagMetadataFlag TIMESTAMP

PHASE

public static final TagReadData.TagMetadataFlag PHASE

PROTOCOL

public static final TagReadData.TagMetadataFlag PROTOCOL

DATA

public static final TagReadData.TagMetadataFlag DATA

GPIO_STATUS

public static final TagReadData.TagMetadataFlag GPIO_STATUS

GEN2_Q

public static final TagReadData.TagMetadataFlag GEN2_Q

GEN2_LF

public static final TagReadData.TagMetadataFlag GEN2_LF

GEN2_TARGET

public static final TagReadData.TagMetadataFlag GEN2_TARGET

BRAND_IDENTIFIER

public static final TagReadData.TagMetadataFlag BRAND_IDENTIFIER

ALL

public static final TagReadData.TagMetadataFlag ALL
Method Detail

values

public static TagReadData.TagMetadataFlag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (TagReadData.TagMetadataFlag c : TagReadData.TagMetadataFlag.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TagReadData.TagMetadataFlag valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null