org.apache.commons.configuration
public class ConfigurationMap extends AbstractMap
The ConfigurationMap wraps a
configuration-collection
Configuration
instance to provide a Map interface.
Note: This implementation is incomplete.
Since: 1.0
Version: $Revision: 492216 $, $Date: 2007-01-03 17:51:24 +0100 (Mi, 03 Jan 2007) $
| Nested Class Summary | |
|---|---|
| static class | ConfigurationMap.ConfigurationSet
Set of entries in the map. |
| Field Summary | |
|---|---|
| Configuration | configuration
The Configuration wrapped by this class. |
| Constructor Summary | |
|---|---|
| ConfigurationMap(Configuration configuration)
Creates a new instance of a ConfigurationMap
that wraps the specified Configuration
instance. | |
| Method Summary | |
|---|---|
| Set | entrySet()
Returns a set with the entries contained in this configuration-based map.
|
| Object | get(Object key)
Returns the value of the specified key. |
| Configuration | getConfiguration()
Returns the wrapped Configuration object.
|
| Object | put(Object key, Object value)
Stores the value for the specified key. |
Configuration wrapped by this class.ConfigurationMap
that wraps the specified Configuration
instance.Parameters: configuration Configuration
instance.
Returns: a set with the contained entries
See Also: java.util.Map#entrySet()
Parameters: key the key
Returns: the value of this key
See Also: java.util.Map#get(java.lang.Object)
Configuration object.
Returns: the wrapped configuration
Since: 1.2
Parameters: key the key (will be converted to a string) value the value
Returns: the old value of this key or null if it is new
See Also: java.util.Map#put(java.lang.Object, java.lang.Object)