Uses of Interface
org.apache.commons.configuration2.tree.ConfigurationNodeVisitor
Package
Description
The Configuration main package.
A package with helper and utility classes used by hierarchical configurations.
-
Uses of ConfigurationNodeVisitor in org.apache.commons.configuration2
Modifier and TypeClassDescriptionprotected static class
A specialized visitor base class that can be used for storing the tree of configuration nodes. -
Uses of ConfigurationNodeVisitor in org.apache.commons.configuration2.tree
Modifier and TypeClassDescriptionclass
A simple adapter class that simplifies writing custom node visitor implementations.Modifier and TypeMethodDescription<T> void
NodeTreeWalker.walkBFS
(T root, ConfigurationNodeVisitor<T> visitor, NodeHandler<T> handler) Visits all nodes in the hierarchy represented by the given root node in breadth first search manner.<T> void
NodeTreeWalker.walkDFS
(T root, ConfigurationNodeVisitor<T> visitor, NodeHandler<T> handler) Visits all nodes in the hierarchy represented by the given root node in depth first search manner.