Package com.metratec.lib.rfidreader.uhf
Enum UHFReader.MEMBANK
- java.lang.Object
-
- java.lang.Enum<UHFReader.MEMBANK>
-
- com.metratec.lib.rfidreader.uhf.UHFReader.MEMBANK
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UHFReader.MEMBANK>
- Enclosing class:
- UHFReader
public static enum UHFReader.MEMBANK extends java.lang.Enum<UHFReader.MEMBANK>
Enum for the UHF Tag membank
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACP
Access passwordEPC
The EPC membank.KLP
Kill passwordRES
Reserved membank.TID
The tag ID of the tag (sometimes contains a unique ID, sometimes only a manufacturer code, depending on the tag type)USR
The optional user memory some tags have
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UHFReader.MEMBANK
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UHFReader.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 UHFReader.MEMBANK EPC
The EPC membank. Contains CRC, PC and EPC.
-
TID
public static final UHFReader.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 UHFReader.MEMBANK USR
The optional user memory some tags have
-
RES
public static final UHFReader.MEMBANK RES
Reserved membank. Contains Kill password and Access password
-
ACP
public static final UHFReader.MEMBANK ACP
Access password
-
KLP
public static final UHFReader.MEMBANK KLP
Kill password
-
-
Method Detail
-
values
public static UHFReader.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 (UHFReader.MEMBANK c : UHFReader.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 UHFReader.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
-
-