Uses of Interface
org.eclipse.aether.graph.DependencyVisitor
Packages that use DependencyVisitor
Package
Description
The representation of a dependency graph by means of connected dependency nodes.
Various dependency visitors for inspecting a dependency graph.
- 
Uses of DependencyVisitor in org.eclipse.aether.graphMethods in org.eclipse.aether.graph with parameters of type DependencyVisitorModifier and TypeMethodDescriptionbooleanDefaultDependencyNode.accept(DependencyVisitor visitor) booleanDependencyNode.accept(DependencyVisitor visitor) Traverses this node and potentially its children using the specified visitor.
- 
Uses of DependencyVisitor in org.eclipse.aether.util.graph.visitorClasses in org.eclipse.aether.util.graph.visitor that implement DependencyVisitorModifier and TypeClassDescriptionclassA dependency visitor that constructs a clone of the visited dependency graph.classA dependency visitor that dumps the graph to anyConsumer<String>.final classA dependency visitor that delegates to another visitor if nodes match a filter.final classProcesses dependency graph by traversing the graph in level order.final classA dependency visitor that records all paths leading to nodes matching a certain filter criteria.final classProcesses dependency graph by traversing the graph in postorder.final classDeprecated.final classProcesses dependency graph by traversing the graph in preorder.final classDeprecated.seePreorderDependencyNodeConsumerVisitorthat is more versatilefinal classA dependency visitor that delegates to another visitor if a node hasn't been visited before.Methods in org.eclipse.aether.util.graph.visitor that return DependencyVisitorModifier and TypeMethodDescriptionFilteringDependencyVisitor.getVisitor()Gets the visitor to which this visitor delegates to.Constructors in org.eclipse.aether.util.graph.visitor with parameters of type DependencyVisitorModifierConstructorDescriptionFilteringDependencyVisitor(DependencyVisitor visitor, DependencyFilter filter) Creates a new visitor that delegates traversal of nodes matching the given filter to the specified visitor.TreeDependencyVisitor(DependencyVisitor visitor) Creates a new visitor that delegates to the specified visitor.
PostorderDependencyNodeConsumerVisitorthat is more versatile