Package | Description |
---|---|
org.neo4j.graphdb |
The core graph database API.
|
org.neo4j.graphdb.traversal |
Traversal framework.
|
Modifier and Type | Method and Description |
---|---|
static <STATE> PathExpander<STATE> |
PathExpanders.printingWrapper(PathExpander<STATE> source,
BiFunction<Path,BranchState,Boolean> pred,
Paths.PathDescriptor descriptor)
A wrapper that uses
Paths.DefaultPathDescriptor to print expanded paths
that fulfill BiFunction predicate using given Paths.PathDescriptor . |
static <STATE> PathExpander<STATE> |
PathExpanders.printingWrapper(PathExpander<STATE> source,
BiFunction<Path,BranchState,Boolean> pred,
Paths.PathDescriptor descriptor,
PrintStream out)
A wrapper that uses
Paths.DefaultPathDescriptor to print expanded paths
that fulfill BiFunction predicate using given Paths.PathDescriptor . |
static <STATE> PathExpander<STATE> |
PathExpanders.printingWrapper(PathExpander<STATE> source,
Paths.PathDescriptor descriptor)
A wrapper that uses
Paths.DefaultPathDescriptor to print expanded paths
using given Paths.PathDescriptor . |
Modifier and Type | Class and Description |
---|---|
static class |
Paths.DefaultPathDescriptor<T extends Path>
The default
Paths.PathDescriptor used in common toString()
representations in classes implementing Path . |
Modifier and Type | Method and Description |
---|---|
static <T extends Path> |
Paths.descriptorForIdAndProperties(boolean nodeId,
boolean relId,
String... propertyKeys)
Create a new
Paths.PathDescriptor that prints values of listed property keys
and id of nodes and relationships if configured so. |
Modifier and Type | Method and Description |
---|---|
static <T extends Path> |
Paths.pathToString(T path,
Paths.PathDescriptor<T> builder)
Method for building a string representation of a
Path , using
the given builder . |
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.