|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Cursor.Decision>
org.ardverk.collection.Cursor.Decision
public static enum Cursor.Decision
The 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
types
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Cursor.Decision EXIT
public static final Cursor.Decision CONTINUE
public static final Cursor.Decision REMOVE
Trie
and continue
public static final Cursor.Decision REMOVE_AND_EXIT
Trie
and exit from the
traverse operation
Method Detail |
---|
public 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |