Uses of Class
org.apache.commons.configuration2.tree.NodeAddData
Packages that use NodeAddData
Package
Description
The Configuration main package.
A package with helper and utility classes used by hierarchical configurations.
This package contains the
XPathExpressionEngine
class which enables XPATH support for querying configuration
properties.-
Uses of NodeAddData in org.apache.commons.configuration2
Methods in org.apache.commons.configuration2 that return NodeAddDataModifier and TypeMethodDescriptionAbstractHierarchicalConfiguration.resolveAddKey
(T root, String key, NodeHandler<T> handler) Resolves a key of an add operation. -
Uses of NodeAddData in org.apache.commons.configuration2.tree
Methods in org.apache.commons.configuration2.tree that return NodeAddDataModifier and TypeMethodDescription<T> NodeAddData<T>
DefaultExpressionEngine.prepareAdd
(T root, String key, NodeHandler<T> handler) Prepares Adding the property with the specified key.<T> NodeAddData<T>
ExpressionEngine.prepareAdd
(T root, String key, NodeHandler<T> handler) Returns information needed for an add operation.NodeKeyResolver.resolveAddKey
(T root, String key, NodeHandler<T> handler) Resolves a key of an add operation.Methods in org.apache.commons.configuration2.tree with parameters of type NodeAddDataModifier and TypeMethodDescriptionprivate static void
InMemoryNodeModel.addAttributeProperty
(ModelTransaction tx, NodeAddData<ImmutableNode> addData, Iterable<?> values) Handles an add property operation if the property to be added is an attribute.private static void
InMemoryNodeModel.addNodeProperty
(ModelTransaction tx, NodeAddData<ImmutableNode> addData, Iterable<?> values) Handles an add property operation if the property to be added is a node.private static void
InMemoryNodeModel.addNodesByAddData
(ModelTransaction tx, NodeAddData<ImmutableNode> addData, Collection<ImmutableNode> newNodes) Initializes a transaction to add a collection of nodes as described by aNodeAddData
object.private static ImmutableNode
InMemoryNodeModel.createNodeToAddWithPath
(NodeAddData<ImmutableNode> addData, Collection<ImmutableNode> newNodes) Creates a node structure consisting of the path nodes defined by the passed inNodeAddData
instance and all new child nodes. -
Uses of NodeAddData in org.apache.commons.configuration2.tree.xpath
Methods in org.apache.commons.configuration2.tree.xpath that return NodeAddDataModifier and TypeMethodDescription(package private) <T> NodeAddData<T>
XPathExpressionEngine.createNodeAddData
(String path, QueryResult<T> parentNodeResult) Creates aNodeAddData
object as a result of aprepareAdd()
operation.<T> NodeAddData<T>
XPathExpressionEngine.prepareAdd
(T root, String key, NodeHandler<T> handler) Returns information needed for an add operation.