public enum InventoryType extends Enum<InventoryType>
Enum Constant and Description |
---|
EPC
EPC only
|
EPC_AND_TID
Both EPC and TID
|
Modifier and Type | Method and Description |
---|---|
static InventoryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InventoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InventoryType EPC
public static final InventoryType EPC_AND_TID
public static InventoryType[] values()
for (InventoryType c : InventoryType.values()) System.out.println(c);
public static InventoryType 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