Uses of Interface
org.apache.commons.configuration2.tree.InMemoryNodeModelSupport
-
Packages that use InMemoryNodeModelSupport Package Description org.apache.commons.configuration2 The Configuration main package.org.apache.commons.configuration2.plist Configuration classes supporting NeXT / OpenStep /GNUStep style configuration.org.apache.commons.configuration2.tree A package with helper and utility classes used by hierarchical configurations. -
-
Uses of InMemoryNodeModelSupport in org.apache.commons.configuration2
Classes in org.apache.commons.configuration2 that implement InMemoryNodeModelSupport Modifier and Type Class Description class
AbstractYAMLBasedConfiguration
A base class for configuration implementations based on YAML structures.class
BaseHierarchicalConfiguration
A specialized hierarchical configuration implementation that is based on a structure ofImmutableNode
objects.class
CombinedConfiguration
A hierarchical composite configuration class.class
DynamicCombinedConfiguration
DynamicCombinedConfiguration allows a set of CombinedConfigurations to be used.class
INIConfiguration
A specialized hierarchical configuration implementation for parsing ini files.class
JSONConfiguration
A specialized hierarchical configuration class that is able to parse JSON documents.class
PatternSubtreeConfigurationWrapper
Wraps a BaseHierarchicalConfiguration and allows subtrees to be accessed via a configured path with replaceable tokens derived from the ConfigurationInterpolator.class
SubnodeConfiguration
A specialized hierarchical configuration class with a node model that uses a tracked node of another node model as its root node.class
XMLConfiguration
A specialized hierarchical configuration class that is able to parse XML documents.class
YAMLConfiguration
A specialized hierarchical configuration class that is able to parse YAML documents.Methods in org.apache.commons.configuration2 with parameters of type InMemoryNodeModelSupport Modifier and Type Method Description protected SubnodeConfiguration
BaseHierarchicalConfiguration. createSubConfigurationForTrackedNode(NodeSelector selector, InMemoryNodeModelSupport parentModelSupport)
Creates a connected sub configuration based on a selector for a tracked node.protected SubnodeConfiguration
SubnodeConfiguration. createSubConfigurationForTrackedNode(NodeSelector selector, InMemoryNodeModelSupport parentModelSupport)
Creates a connected sub configuration based on a selector for a tracked node. -
Uses of InMemoryNodeModelSupport in org.apache.commons.configuration2.plist
Classes in org.apache.commons.configuration2.plist that implement InMemoryNodeModelSupport Modifier and Type Class Description class
PropertyListConfiguration
NeXT / OpenStep style configuration.class
XMLPropertyListConfiguration
Property list file (plist) in XML FORMAT as used by Mac OS X (http://www.apple.com/DTDs/PropertyList-1.0.dtd). -
Uses of InMemoryNodeModelSupport in org.apache.commons.configuration2.tree
Methods in org.apache.commons.configuration2.tree that return InMemoryNodeModelSupport Modifier and Type Method Description InMemoryNodeModelSupport
TrackedNodeModel. getParentModelSupport()
Gets theInMemoryNodeModelSupport
object which is used to gain access to the underlying node model.Constructors in org.apache.commons.configuration2.tree with parameters of type InMemoryNodeModelSupport Constructor Description TrackedNodeModel(InMemoryNodeModelSupport modelSupport, NodeSelector sel, boolean untrackOnFinalize)
Creates a new instance ofTrackedNodeModel
and initializes it with the given underlying model and the selector to the root node.
-