Uses of Class
org.apache.commons.configuration2.tree.NodeCombiner
-
Packages that use NodeCombiner Package Description org.apache.commons.configuration2 The Configuration main package.org.apache.commons.configuration2.tree A package with helper and utility classes used by hierarchical configurations. -
-
Uses of NodeCombiner in org.apache.commons.configuration2
Methods in org.apache.commons.configuration2 that return NodeCombiner Modifier and Type Method Description NodeCombiner
CombinedConfiguration. getNodeCombiner()
Returns the node combiner that is used for creating the combined node structure.NodeCombiner
DynamicCombinedConfiguration. getNodeCombiner()
Returns the node combiner that is used for creating the combined node structure.Methods in org.apache.commons.configuration2 with parameters of type NodeCombiner Modifier and Type Method Description void
CombinedConfiguration. setNodeCombiner(NodeCombiner nodeCombiner)
Sets the node combiner.void
DynamicCombinedConfiguration. setNodeCombiner(NodeCombiner nodeCombiner)
Sets the node combiner.Constructors in org.apache.commons.configuration2 with parameters of type NodeCombiner Constructor Description CombinedConfiguration(NodeCombiner comb)
Creates a new instance ofCombinedConfiguration
and initializes the combiner to be used.DynamicCombinedConfiguration(NodeCombiner comb)
Creates a new instance ofDynamicCombinedConfiguration
and initializes the combiner to be used. -
Uses of NodeCombiner in org.apache.commons.configuration2.tree
Subclasses of NodeCombiner in org.apache.commons.configuration2.tree Modifier and Type Class Description class
MergeCombiner
A specialized implementation of theNodeCombiner
interface that performs a merge from two passed in node hierarchies.class
OverrideCombiner
A concrete combiner implementation that is able to construct an override combination.class
UnionCombiner
A specialized implementation of theNodeCombiner
interface that constructs a union from two passed in node hierarchies.
-