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 types| Enum Constant and Description | 
|---|
| CONTINUEContinue with the traverse operation | 
| EXITExit the traverse operation | 
| REMOVERemove the previously returned element
 from the  Trieand continue | 
| REMOVE_AND_EXITRemove the previously returned element
 from the  Trieand 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