Uses of Class
org.apache.commons.configuration2.beanutils.XMLBeanDeclaration.NodeData
-
Packages that use XMLBeanDeclaration.NodeData Package Description org.apache.commons.configuration2.beanutils In this package aConfiguration
implementation can be found that implements theDynaBean
interface. -
-
Uses of XMLBeanDeclaration.NodeData in org.apache.commons.configuration2.beanutils
Fields in org.apache.commons.configuration2.beanutils declared as XMLBeanDeclaration.NodeData Modifier and Type Field Description private XMLBeanDeclaration.NodeData<?>
XMLBeanDeclaration. nodeData
Stores the configuration node that contains the bean declaration.Methods in org.apache.commons.configuration2.beanutils that return XMLBeanDeclaration.NodeData Modifier and Type Method Description private 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.NodeData Modifier and Type Method Description (package private) java.util.List<XMLBeanDeclaration.NodeData<T>>
XMLBeanDeclaration.NodeData. getChildren()
Gets a list with the children of the wrapped node, again wrapped intoNodeData
objects.(package private) java.util.List<XMLBeanDeclaration.NodeData<T>>
XMLBeanDeclaration.NodeData. getChildren(java.lang.String name)
Gets a list with the children of the wrapped node with the given name, again wrapped intoNodeData
objects.(package private) java.util.List<XMLBeanDeclaration.NodeData<T>>
XMLBeanDeclaration.NodeData. wrapInNodeData(java.util.List<T> nodes)
Wraps the passed in list of nodes inNodeData
objects.Methods in org.apache.commons.configuration2.beanutils with parameters of type XMLBeanDeclaration.NodeData Modifier and Type Method Description (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 java.lang.String
XMLBeanDeclaration. getAttribute(XMLBeanDeclaration.NodeData<?> nodeData, java.lang.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.NodeData Constructor Description XMLBeanDeclaration(HierarchicalConfiguration<?> config, XMLBeanDeclaration.NodeData<?> node)
Constructs a new instance ofXMLBeanDeclaration
and initializes it with the configuration node that contains the bean declaration.
-