Package com.metratec.lib.rfidreader.uhf
Enum UHFReaderGen2.REGION
- java.lang.Object
-
- java.lang.Enum<UHFReaderGen2.REGION>
-
- com.metratec.lib.rfidreader.uhf.UHFReaderGen2.REGION
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UHFReaderGen2.REGION>
- Enclosing class:
- UHFReaderGen2
public static enum UHFReaderGen2.REGION extends java.lang.Enum<UHFReaderGen2.REGION>
the available uhf regions
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UHFReaderGen2.REGION
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UHFReaderGen2.REGION[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ETSI
public static final UHFReaderGen2.REGION ETSI
ETSI
-
ETSI_HIGH
public static final UHFReaderGen2.REGION ETSI_HIGH
ETSI
-
FCC
public static final UHFReaderGen2.REGION FCC
FCC
-
CHINA
public static final UHFReaderGen2.REGION CHINA
CHINA
-
-
Method Detail
-
values
public static UHFReaderGen2.REGION[] 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 (UHFReaderGen2.REGION c : UHFReaderGen2.REGION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UHFReaderGen2.REGION 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 namejava.lang.NullPointerException
- if the argument is null
-
-