Uses of Interface
org.apache.commons.configuration2.tree.NodeMatcher
-
Packages that use NodeMatcher Package Description org.apache.commons.configuration2.tree A package with helper and utility classes used by hierarchical configurations. -
-
Uses of NodeMatcher in org.apache.commons.configuration2.tree
Classes in org.apache.commons.configuration2.tree that implement NodeMatcher Modifier and Type Class Description class
NodeNameMatchers
An enumeration class with several pre-definedNodeMatcher
implementations based on node names.Fields in org.apache.commons.configuration2.tree declared as NodeMatcher Modifier and Type Field Description private NodeMatcher<java.lang.String>
DefaultExpressionEngine. nameMatcher
The matcher for node names.Methods in org.apache.commons.configuration2.tree with parameters of type NodeMatcher Modifier and Type Method Description <C> java.util.List<ImmutableNode>
AbstractImmutableNodeHandler. getMatchingChildren(ImmutableNode node, NodeMatcher<C> matcher, C criterion)
Gets an unmodifiable list of all children of the specified node which are matched by the passed inNodeMatcher
against the provided criterion.<C> java.util.List<T>
NodeHandler. getMatchingChildren(T node, NodeMatcher<C> matcher, C criterion)
Gets an unmodifiable list of all children of the specified node which are matched by the passed inNodeMatcher
against the provided criterion.<C> java.util.List<T>
NodeHandlerDecorator. getMatchingChildren(T node, NodeMatcher<C> matcher, C criterion)
<C> int
AbstractImmutableNodeHandler. getMatchingChildrenCount(ImmutableNode node, NodeMatcher<C> matcher, C criterion)
<C> int
NodeHandler. getMatchingChildrenCount(T node, NodeMatcher<C> matcher, C criterion)
Gets the number of children of the specified node which are matched by the givenNodeMatcher
.<C> int
NodeHandlerDecorator. getMatchingChildrenCount(T node, NodeMatcher<C> matcher, C criterion)
Constructors in org.apache.commons.configuration2.tree with parameters of type NodeMatcher Constructor Description DefaultExpressionEngine(DefaultExpressionEngineSymbols syms, NodeMatcher<java.lang.String> nodeNameMatcher)
Creates a new instance ofDefaultExpressionEngine
and initializes its symbols and the matcher for comparing node names.
-