public static enum StUhf.Bank extends java.lang.Enum<StUhf.Bank>
Enum Constant and Description |
---|
Reserved
The 0 bank
|
TID
The 2nd bank
|
UII
The 1st bank ,Epc Bank
|
User
The 3rd bank
|
Modifier and Type | Field and Description |
---|---|
static StUhf.Bank |
Epc
as Uii
|
Modifier and Type | Method and Description |
---|---|
byte |
getByte() |
static StUhf.Bank |
ValueOf(int index)
According to the Bank’s index number, to generate a corresponding Bank
|
static StUhf.Bank |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StUhf.Bank[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StUhf.Bank Reserved
public static final StUhf.Bank UII
public static final StUhf.Bank TID
public static final StUhf.Bank User
public static StUhf.Bank Epc
public static StUhf.Bank[] values()
for (StUhf.Bank c : StUhf.Bank.values()) System.out.println(c);
public static StUhf.Bank 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 byte getByte()
public static StUhf.Bank ValueOf(int index)
index
-
According to the Bank’s index number,in the range [0,3] java.lang.IllegalArgumentException
-
Index is less than 0 or greater than 3