Package com.metratec.lib.rfidreader.uhf
Enum UHFReaderGen2.MEMBANK
- java.lang.Object
-
- java.lang.Enum<UHFReaderGen2.MEMBANK>
-
- com.metratec.lib.rfidreader.uhf.UHFReaderGen2.MEMBANK
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UHFReaderGen2.MEMBANK>
- Enclosing class:
- UHFReaderGen2
public static enum UHFReaderGen2.MEMBANK extends java.lang.Enum<UHFReaderGen2.MEMBANK>
Enum for the UHF Tag membank
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UHFReaderGen2.MEMBANK
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UHFReaderGen2.MEMBANK[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EPC
public static final UHFReaderGen2.MEMBANK EPC
The EPC membank. Contains CRC, PC and EPC.
-
TID
public static final UHFReaderGen2.MEMBANK TID
The tag ID of the tag (sometimes contains a unique ID, sometimes only a manufacturer code, depending on the tag type)
-
USR
public static final UHFReaderGen2.MEMBANK USR
The optional user memory some tags have
-
PC
public static final UHFReaderGen2.MEMBANK PC
Protocol control
-
-
Method Detail
-
values
public static UHFReaderGen2.MEMBANK[] 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.MEMBANK c : UHFReaderGen2.MEMBANK.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.MEMBANK 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
-
-