public static enum Cursor.Decision extends java.lang.Enum<Cursor.Decision>
Cursor.Decision
tells the Cursor
what to do on each step
while traversing the Trie
.
NOTE: Not all operations that work with a Cursor
support all
Cursor.Decision
typesEnum Constant and Description |
---|
CONTINUE
Continue with the traverse operation
|
EXIT
Exit the traverse operation
|
REMOVE
Remove the previously returned element
from the
Trie and continue |
REMOVE_AND_EXIT
Remove the previously returned element
from the
Trie and exit from the
traverse operation |
Modifier and Type | Method and Description |
---|---|
static Cursor.Decision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cursor.Decision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cursor.Decision EXIT
public static final Cursor.Decision CONTINUE
public static final Cursor.Decision REMOVE
Trie
and continuepublic static final Cursor.Decision REMOVE_AND_EXIT
Trie
and exit from the
traverse operationpublic static Cursor.Decision[] values()
for (Cursor.Decision c : Cursor.Decision.values()) System.out.println(c);
public static Cursor.Decision 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 nullCopyright © 2018 The Apache Software Foundation