com.thingmagic
Enum Reader.RegulatoryMode

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

public static enum Reader.RegulatoryMode
extends java.lang.Enum<Reader.RegulatoryMode>

Enums for Regulatory mode


Enum Constant Summary
CONTINUOUS
           
TIMED
           
 
Method Summary
static Reader.RegulatoryMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Reader.RegulatoryMode[] 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

CONTINUOUS

public static final Reader.RegulatoryMode CONTINUOUS

TIMED

public static final Reader.RegulatoryMode TIMED
Method Detail

values

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

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

valueOf

public static Reader.RegulatoryMode 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