com.thingmagic
Enum SerialReader.AntennaSelection

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

public static enum SerialReader.AntennaSelection
extends java.lang.Enum<SerialReader.AntennaSelection>

The antenna configuration to use for SerialReader.cmdReadTagMultiple(int, com.thingmagic.SerialReader.AntennaSelection, com.thingmagic.TagProtocol, com.thingmagic.TagFilter, boolean).


Enum Constant Summary
ANTENNA_1_THEN_2
           
ANTENNA_2_THEN_1
           
CONFIGURED_ANTENNA
           
CONFIGURED_LIST
           
LARGE_TAG_POPULATION_SUPPORT
           
READ_MULTIPLE_SEARCH_FLAGS_EMBEDDED_OP
           
READ_MULTIPLE_SEARCH_FLAGS_TAG_STREAMING
           
 
Method Summary
static SerialReader.AntennaSelection valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SerialReader.AntennaSelection[] 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

CONFIGURED_ANTENNA

public static final SerialReader.AntennaSelection CONFIGURED_ANTENNA

ANTENNA_1_THEN_2

public static final SerialReader.AntennaSelection ANTENNA_1_THEN_2

ANTENNA_2_THEN_1

public static final SerialReader.AntennaSelection ANTENNA_2_THEN_1

CONFIGURED_LIST

public static final SerialReader.AntennaSelection CONFIGURED_LIST

READ_MULTIPLE_SEARCH_FLAGS_EMBEDDED_OP

public static final SerialReader.AntennaSelection READ_MULTIPLE_SEARCH_FLAGS_EMBEDDED_OP

READ_MULTIPLE_SEARCH_FLAGS_TAG_STREAMING

public static final SerialReader.AntennaSelection READ_MULTIPLE_SEARCH_FLAGS_TAG_STREAMING

LARGE_TAG_POPULATION_SUPPORT

public static final SerialReader.AntennaSelection LARGE_TAG_POPULATION_SUPPORT
Method Detail

values

public static SerialReader.AntennaSelection[] 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 (SerialReader.AntennaSelection c : SerialReader.AntennaSelection.values())
    System.out.println(c);

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

valueOf

public static SerialReader.AntennaSelection 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