Java org.apache.commons.configuration2 HierarchicalConfiguration fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.configuration2 HierarchicalConfiguration fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.configuration2 HierarchicalConfiguration.

The text is from its open source code.

Method

voidaddProperty(String key, Object value)
Add a property to the configuration.
List>childConfigurationsAt(String key)
Returns a list with sub configurations for all child nodes of the node selected by the given key.
voidclear()
Remove all properties from the configuration.
voidclearProperty(String key)
Remove a property from the configuration.
voidclearTree(String key)
Removes all values of the property with the given name and of keys that start with this name.
HierarchicalConfigurationconfigurationAt(String key)
Returns a hierarchical subnode configuration for the node specified by the given key.
List>configurationsAt(String key)
Returns a list of sub configurations for all configuration nodes selected by the given key.
voidsetProperty(String key, Object value)
Set a property, this will replace any previously set values.
StringtoString()
Returns a string representation of the object.