Uses of Interface
org.apache.commons.configuration2.tree.NodeModel
-
Packages that use NodeModel 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 NodeModel in org.apache.commons.configuration2
Methods in org.apache.commons.configuration2 that return NodeModel Modifier and Type Method Description protected abstract NodeModel<T>
AbstractHierarchicalConfiguration. cloneNodeModel()
Creates a clone of the node model.protected NodeModel<ImmutableNode>
BaseHierarchicalConfiguration. cloneNodeModel()
Creates a clone of the node model.protected NodeModel<ImmutableNode>
SubnodeConfiguration. cloneNodeModel()
Creates a clone of the node model.protected NodeModel<T>
AbstractHierarchicalConfiguration. getModel()
Gets theNodeModel
used by this configuration.NodeModel<T>
AbstractHierarchicalConfiguration. getNodeModel()
Gets theNodeModel
supported by this object.Constructors in org.apache.commons.configuration2 with parameters of type NodeModel Constructor Description AbstractHierarchicalConfiguration(NodeModel<T> nodeModel)
Creates a new instance ofAbstractHierarchicalConfiguration
and sets theNodeModel
to be used.BaseHierarchicalConfiguration(NodeModel<ImmutableNode> model)
Creates a new instance ofBaseHierarchicalConfiguration
and initializes it with the givenNodeModel
. -
Uses of NodeModel in org.apache.commons.configuration2.tree
Classes in org.apache.commons.configuration2.tree that implement NodeModel Modifier and Type Class Description class
InMemoryNodeModel
A specialized node model implementation which operates onImmutableNode
structures.class
TrackedNodeModel
A specializedNodeModel
implementation that uses a tracked node managed by anInMemoryNodeModel
object as root node.Methods in org.apache.commons.configuration2.tree that return NodeModel Modifier and Type Method Description NodeModel<T>
NodeModelSupport. getNodeModel()
Gets theNodeModel
supported by this object.
-