public enum QtAccessRange extends java.lang.Enum<QtAccessRange>
| Enum Constant and Description |
|---|
NormalRange
Normal-Range tells tag to use normal sensitivity.
|
ShortRange
Short-Range tells tag to reduce sensitivity, adding a layer of
physical security by preventing readers farther than roughly one
meter from the tag from switching the tag from Public to Private
(or vice versa).
|
Unknown
Leave tag access range as-is.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static QtAccessRange |
valueOf(int qtAccessRangeValue) |
static QtAccessRange |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QtAccessRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QtAccessRange Unknown
public static final QtAccessRange NormalRange
public static final QtAccessRange ShortRange
public static QtAccessRange[] values()
for (QtAccessRange c : QtAccessRange.values()) System.out.println(c);
public static QtAccessRange valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static QtAccessRange valueOf(int qtAccessRangeValue)
qtAccessRangeValue - integer valuepublic int getValue()