Java org.apache.commons.configuration.tree ConfigurationNode fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.configuration.tree ConfigurationNode fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.configuration.tree ConfigurationNode.

The text is from its open source code.

Method

voidaddAttribute(ConfigurationNode attr)
Adds the specified attribute to this node
voidaddChild(ConfigurationNode node)
Adds a child to this node.
intgetAttributeCount()
Returns the number of attributes of this node.
ListgetAttributes()
Returns a list with this node's attributes.
ListgetAttributes(String name)
Returns a list with the attribute nodes with the given name.
ConfigurationNodegetChild(int index)
Returns the child node with the given index.
ListgetChildren()
Returns a list with the child nodes of this node.
ListgetChildren(String name)
Returns a list with all children of this node with the given name.
intgetChildrenCount()
Returns the number of this node's children.
StringgetName()
Returns the name of this node.
ConfigurationNodegetParentNode()
Returns this node's parent.
ObjectgetReference()
Returns this node's reference.
ObjectgetValue()
Returns the value of this node.
voidsetAttribute(boolean f)
Sets a flag whether this node is an attribute.
voidsetName(String name)
Sets the name of this node.
voidsetValue(Object val)
Sets the value of this node.