|
Neo4j Community | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Evaluation | |
---|---|
org.neo4j.graphdb.traversal | Traversal framework. |
Uses of Evaluation in org.neo4j.graphdb.traversal |
---|
Methods in org.neo4j.graphdb.traversal that return Evaluation | |
---|---|
Evaluation |
Evaluator.evaluate(Path path)
Evaluates a Path and returns an Evaluation containing
information about whether or not to include it in the traversal result,
i.e return it from the Traverser . |
Evaluation |
TraversalBranch.evaluation()
|
static Evaluation |
Evaluation.of(boolean includes,
boolean continues)
|
static Evaluation |
Evaluation.ofContinues(boolean continues)
Continue or prune; always include. |
static Evaluation |
Evaluation.ofIncludes(boolean includes)
Include or exclude; always continue. |
static Evaluation |
Evaluation.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Evaluation[] |
Evaluation.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods in org.neo4j.graphdb.traversal with parameters of type Evaluation | |
---|---|
static Evaluator |
Evaluators.endNodeIs(Evaluation evaluationIfMatch,
Evaluation evaluationIfNoMatch,
Node... possibleEndNodes)
Returns an Evaluator which looks at each Path and includes those
where the Path.endNode() is one of possibleEndNodes . |
static Evaluator |
Evaluators.lastRelationshipTypeIs(Evaluation evaluationIfMatch,
Evaluation evaluationIfNoMatch,
RelationshipType type,
RelationshipType... orAnyOfTheseTypes)
Returns an Evaluator which compares the type of the last relationship
in a Path to a given set of relationship types (one or more).If the type of
the last relationship in a path is of one of the given types then
evaluationIfMatch will be returned, otherwise
evaluationIfNoMatch will be returned. |
|
Neo4j Community | |||||||||
PREV NEXT | FRAMES NO FRAMES |