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