com.thingmagic
Enum Reader.Region

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

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

RFID regulatory regions


Enum Constant Summary
AR
          Argentina
AU
          Australia
BD
          Bangladesh
EU
          European Union
EU2
          European Union (revised)
EU3
          European Union (revised)
EU4
          European Union (revised)
HK
          Hong Kong
ID
          Indonesia
IN
          India
IS
          Israel
JP
          Japan
JP2
          Japan2 (24dBm with 13 channels)
JP3
          Japan3 (24dBm with 6 channels)
KR
          Korea
KR2
          Korea (revised)
MANUFACTURING
          Unrestricted access to full hardware range
MO
          Macau
MY
          Malaysia
NA
          North America
NA2
          Reduced FCC region
NA3
          5MHZ FCC band
NZ
          New Zealand !!EXPERIMENTAL!!
OPEN
          No-limit region
OPEN_EXTENDED
          OPEN region with extended frequency range 840-960MHz for M6ePlus module
PH
          Philippines
PRC
          China
PRC2
          China(840MHZ)
RU
          Russia
SG
          Singapore
TH
          Thailand
TW
          Taiwan
UNSPEC
          Region not set
VN
          Vietnam
 
Method Summary
static Reader.Region valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Reader.Region[] 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

UNSPEC

public static final Reader.Region UNSPEC
Region not set


EU

public static final Reader.Region EU
European Union


IN

public static final Reader.Region IN
India


JP

public static final Reader.Region JP
Japan


KR

public static final Reader.Region KR
Korea


KR2

public static final Reader.Region KR2
Korea (revised)


NA

public static final Reader.Region NA
North America


PRC

public static final Reader.Region PRC
China


PRC2

public static final Reader.Region PRC2
China(840MHZ)


EU2

public static final Reader.Region EU2
European Union (revised)


EU3

public static final Reader.Region EU3
European Union (revised)


AU

public static final Reader.Region AU
Australia


NZ

public static final Reader.Region NZ
New Zealand !!EXPERIMENTAL!!


OPEN

public static final Reader.Region OPEN
No-limit region


MANUFACTURING

public static final Reader.Region MANUFACTURING
Unrestricted access to full hardware range


NA2

public static final Reader.Region NA2
Reduced FCC region


NA3

public static final Reader.Region NA3
5MHZ FCC band


IS

public static final Reader.Region IS
Israel


MY

public static final Reader.Region MY
Malaysia


ID

public static final Reader.Region ID
Indonesia


PH

public static final Reader.Region PH
Philippines


TW

public static final Reader.Region TW
Taiwan


MO

public static final Reader.Region MO
Macau


RU

public static final Reader.Region RU
Russia


SG

public static final Reader.Region SG
Singapore


JP2

public static final Reader.Region JP2
Japan2 (24dBm with 13 channels)


JP3

public static final Reader.Region JP3
Japan3 (24dBm with 6 channels)


VN

public static final Reader.Region VN
Vietnam


TH

public static final Reader.Region TH
Thailand


AR

public static final Reader.Region AR
Argentina


HK

public static final Reader.Region HK
Hong Kong


BD

public static final Reader.Region BD
Bangladesh


EU4

public static final Reader.Region EU4
European Union (revised)


OPEN_EXTENDED

public static final Reader.Region OPEN_EXTENDED
OPEN region with extended frequency range 840-960MHz for M6ePlus module

Method Detail

values

public static Reader.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 (Reader.Region c : Reader.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 Reader.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 name
java.lang.NullPointerException - if the argument is null