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.nodeDataStores 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 aNodeDataobject 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 intoNodeDataobjects.(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 intoNodeDataobjects.(package private) List<XMLBeanDeclaration.NodeData<T>> XMLBeanDeclaration.NodeData.wrapInNodeData(List<T> nodes) Wraps the passed in list of nodes inNodeDataobjects.Methods in org.apache.commons.configuration2.beanutils with parameters of type XMLBeanDeclaration.NodeDataModifier and TypeMethodDescription(package private) BeanDeclarationXMLBeanDeclaration.createBeanDeclaration(XMLBeanDeclaration.NodeData<?> nodeData) Creates a newBeanDeclarationfor a child node of the current configuration node.private ConstructorArgXMLBeanDeclaration.createConstructorArg(XMLBeanDeclaration.NodeData<?> child) Creates aConstructorArgobject for the specified configuration node.private StringXMLBeanDeclaration.getAttribute(XMLBeanDeclaration.NodeData<?> nodeData, String attribute) Gets an attribute of a configuration node.private static booleanXMLBeanDeclaration.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 ofXMLBeanDeclarationand initializes it with the configuration node that contains the bean declaration.