Enum Constant and Description |
---|
A
The Gen2 protocol target A
|
B
The Gen2 protocol target B
|
Modifier and Type | Method and Description |
---|---|
static Target |
fromValue(int value)
Create a Target enum from a numeric value (0/1).
|
int |
getValue()
Get the value of the Target enum.
|
static Target |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Target[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Target A
public static final Target B
public static Target[] values()
for (Target c : Target.values()) System.out.println(c);
public static Target 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 int getValue()
public static Target fromValue(int value) throws InvalidParamException
value
- the int value (0/1) for the TargetInvalidParamException
- if value is not valid