|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Evaluation>
org.neo4j.graphdb.traversal.Evaluation
public enum Evaluation
Result of Evaluator.evaluate(org.neo4j.graphdb.Path)
.
Evaluator
Enum Constant Summary | |
---|---|
EXCLUDE_AND_CONTINUE
|
|
EXCLUDE_AND_PRUNE
|
|
INCLUDE_AND_CONTINUE
|
|
INCLUDE_AND_PRUNE
|
Method Summary | |
---|---|
boolean |
continues()
|
boolean |
includes()
|
static Evaluation |
of(boolean includes,
boolean continues)
|
static Evaluation |
ofContinues(boolean continues)
Continue or prune; always include. |
static Evaluation |
ofIncludes(boolean includes)
Include or exclude; always continue. |
static Evaluation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Evaluation[] |
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 Evaluation INCLUDE_AND_CONTINUE
public static final Evaluation INCLUDE_AND_PRUNE
public static final Evaluation EXCLUDE_AND_CONTINUE
public static final Evaluation EXCLUDE_AND_PRUNE
Method Detail |
---|
public static Evaluation[] values()
for (Evaluation c : Evaluation.values()) System.out.println(c);
public static Evaluation valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic boolean includes()
public boolean continues()
public static Evaluation of(boolean includes, boolean continues)
public static Evaluation ofIncludes(boolean includes)
public static Evaluation ofContinues(boolean continues)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |