public enum MultiTagListType extends Enum<MultiTagListType>
Enum Constant and Description |
---|
EPC
The 1800 device stores scanned EPCs in its multi-tag list to avoid duplicate scans
|
TID
The 1800 device stores tag IDs to avoid duplicate scans.
|
Modifier and Type | Method and Description |
---|---|
static MultiTagListType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MultiTagListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiTagListType EPC
public static final MultiTagListType TID
public static MultiTagListType[] values()
for (MultiTagListType c : MultiTagListType.values()) System.out.println(c);
public static MultiTagListType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null