Uses of Class
org.apache.commons.configuration2.beanutils.XMLBeanDeclaration.NodeData
Packages that use XMLBeanDeclaration.NodeData
Package
Description
In this package a
Configuration
implementation can be found that implements the DynaBean
interface.-
Uses of XMLBeanDeclaration.NodeData in org.apache.commons.configuration2.beanutils
Fields in org.apache.commons.configuration2.beanutils declared as XMLBeanDeclaration.NodeDataModifier and TypeFieldDescriptionprivate final XMLBeanDeclaration.NodeData
<?> XMLBeanDeclaration.nodeData
Stores the configuration node that contains the bean declaration.Methods in org.apache.commons.configuration2.beanutils that return XMLBeanDeclaration.NodeDataModifier and TypeMethodDescriptionprivate static <T> XMLBeanDeclaration.NodeData
<T> XMLBeanDeclaration.createNodeDataFromConfiguration
(HierarchicalConfiguration<T> config) Creates aNodeData
object from the root node of the given configuration.(package private) XMLBeanDeclaration.NodeData
<?> XMLBeanDeclaration.getNode()
Gets the data about the associated node.Methods in org.apache.commons.configuration2.beanutils that return types with arguments of type XMLBeanDeclaration.NodeDataModifier and TypeMethodDescription(package private) List
<XMLBeanDeclaration.NodeData<T>> XMLBeanDeclaration.NodeData.getChildren()
Gets a list with the children of the wrapped node, again wrapped intoNodeData
objects.(package private) List
<XMLBeanDeclaration.NodeData<T>> XMLBeanDeclaration.NodeData.getChildren
(String name) Gets a list with the children of the wrapped node with the given name, again wrapped intoNodeData
objects.(package private) List
<XMLBeanDeclaration.NodeData<T>> XMLBeanDeclaration.NodeData.wrapInNodeData
(List<T> nodes) Wraps the passed in list of nodes inNodeData
objects.Methods in org.apache.commons.configuration2.beanutils with parameters of type XMLBeanDeclaration.NodeDataModifier and TypeMethodDescription(package private) BeanDeclaration
XMLBeanDeclaration.createBeanDeclaration
(XMLBeanDeclaration.NodeData<?> nodeData) Creates a newBeanDeclaration
for a child node of the current configuration node.private ConstructorArg
XMLBeanDeclaration.createConstructorArg
(XMLBeanDeclaration.NodeData<?> child) Creates aConstructorArg
object for the specified configuration node.private String
XMLBeanDeclaration.getAttribute
(XMLBeanDeclaration.NodeData<?> nodeData, String attribute) Gets an attribute of a configuration node.private static boolean
XMLBeanDeclaration.isBeanDeclarationArgument
(XMLBeanDeclaration.NodeData<?> nodeData) Tests whether the constructor argument represented by the given configuration node is a bean declaration.Constructors in org.apache.commons.configuration2.beanutils with parameters of type XMLBeanDeclaration.NodeDataModifierConstructorDescription(package private)
XMLBeanDeclaration
(HierarchicalConfiguration<?> config, XMLBeanDeclaration.NodeData<?> node) Constructs a new instance ofXMLBeanDeclaration
and initializes it with the configuration node that contains the bean declaration.