Uses of Interface
org.neo4j.graphdb.traversal.Paths.PathDescriptor
Packages that use Paths.PathDescriptor
Package
Description
The core graph database API.
Traversal framework.
-
Uses of Paths.PathDescriptor in org.neo4j.graphdb
Methods in org.neo4j.graphdb with parameters of type Paths.PathDescriptorModifier and TypeMethodDescriptionstatic <STATE> PathExpander<STATE>
PathExpanders.printingWrapper
(PathExpander<STATE> source, BiFunction<Path, BranchState, Boolean> pred, Paths.PathDescriptor descriptor) A wrapper that usesPaths.DefaultPathDescriptor
to print expanded paths that fulfillBiFunction
predicate using givenPaths.PathDescriptor
.static <STATE> PathExpander<STATE>
PathExpanders.printingWrapper
(PathExpander<STATE> source, BiFunction<Path, BranchState, Boolean> pred, Paths.PathDescriptor descriptor, PrintStream out) A wrapper that usesPaths.DefaultPathDescriptor
to print expanded paths that fulfillBiFunction
predicate using givenPaths.PathDescriptor
.static <STATE> PathExpander<STATE>
PathExpanders.printingWrapper
(PathExpander<STATE> source, Paths.PathDescriptor descriptor) A wrapper that usesPaths.DefaultPathDescriptor
to print expanded paths using givenPaths.PathDescriptor
. -
Uses of Paths.PathDescriptor in org.neo4j.graphdb.traversal
Classes in org.neo4j.graphdb.traversal that implement Paths.PathDescriptorModifier and TypeClassDescriptionstatic class
Paths.DefaultPathDescriptor<T extends Path>
The defaultPaths.PathDescriptor
used in common toString() representations in classes implementingPath
.Methods in org.neo4j.graphdb.traversal that return Paths.PathDescriptorModifier and TypeMethodDescriptionstatic <T extends Path>
Paths.PathDescriptor<T>Paths.descriptorForIdAndProperties
(boolean nodeId, boolean relId, String... propertyKeys) Create a newPaths.PathDescriptor
that prints values of listed property keys and id of nodes and relationships if configured so.Methods in org.neo4j.graphdb.traversal with parameters of type Paths.PathDescriptorModifier and TypeMethodDescriptionPaths.pathToString
(T path, Paths.PathDescriptor<T> builder) Method for building a string representation of aPath
, using the givenbuilder
.