public static enum VectorEntry.State extends Enum<VectorEntry.State>
Enum Constant and Description |
---|
EITHER
Either entry state — used for requesting all entries.
|
SET
A set entry.
|
UNSET
An unset entry.
|
Modifier and Type | Method and Description |
---|---|
static VectorEntry.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VectorEntry.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorEntry.State SET
public static final VectorEntry.State UNSET
public static final VectorEntry.State EITHER
public static VectorEntry.State[] values()
for (VectorEntry.State c : VectorEntry.State.values()) System.out.println(c);
public static VectorEntry.State 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