org.apache.commons.configuration
Class ConfigurationMap

java.lang.Object
  extended by java.util.AbstractMap<java.lang.Object,java.lang.Object>
      extended by org.apache.commons.configuration.ConfigurationMap
All Implemented Interfaces:
java.util.Map<java.lang.Object,java.lang.Object>
Direct Known Subclasses:
ConfigurationDynaBean

public class ConfigurationMap
extends java.util.AbstractMap<java.lang.Object,java.lang.Object>

The ConfigurationMap wraps a configuration-collection Configuration instance to provide a Map interface.

Note: This implementation is incomplete.

Since:
1.0
Version:
$Id: ConfigurationMap.java 1301959 2012-03-17 16:43:18Z oheger $
Author:
Ricardo Gladwell

Nested Class Summary
 
Nested classes/interfaces inherited from class java.util.AbstractMap
java.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V>
 
Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry<K,V>
 
Constructor Summary
ConfigurationMap(Configuration configuration)
          Creates a new instance of a ConfigurationMap that wraps the specified Configuration instance.
 
Method Summary
 java.util.Set<java.util.Map.Entry<java.lang.Object,java.lang.Object>> entrySet()
          Returns a set with the entries contained in this configuration-based map.
 java.lang.Object get(java.lang.Object key)
          Returns the value of the specified key.
 Configuration getConfiguration()
          Returns the wrapped Configuration object.
 java.lang.Object put(java.lang.Object key, java.lang.Object value)
          Stores the value for the specified key.
 
Methods inherited from class java.util.AbstractMap
clear, clone, containsKey, containsValue, equals, hashCode, isEmpty, keySet, putAll, remove, size, toString, values
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConfigurationMap

public ConfigurationMap(Configuration configuration)
Creates a new instance of a ConfigurationMap that wraps the specified Configuration instance.

Parameters:
configuration - Configuration instance.
Method Detail

getConfiguration

public Configuration getConfiguration()
Returns the wrapped Configuration object.

Returns:
the wrapped configuration
Since:
1.2

entrySet

public java.util.Set<java.util.Map.Entry<java.lang.Object,java.lang.Object>> entrySet()
Returns a set with the entries contained in this configuration-based map.

Specified by:
entrySet in interface java.util.Map<java.lang.Object,java.lang.Object>
Specified by:
entrySet in class java.util.AbstractMap<java.lang.Object,java.lang.Object>
Returns:
a set with the contained entries
See Also:
Map.entrySet()

put

public java.lang.Object put(java.lang.Object key,
                            java.lang.Object value)
Stores the value for the specified key. The value is stored in the underlying configuration.

Specified by:
put in interface java.util.Map<java.lang.Object,java.lang.Object>
Overrides:
put in class java.util.AbstractMap<java.lang.Object,java.lang.Object>
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:
Map.put(java.lang.Object, java.lang.Object)

get

public java.lang.Object get(java.lang.Object key)
Returns the value of the specified key. The key is converted to a string and then passed to the underlying configuration.

Specified by:
get in interface java.util.Map<java.lang.Object,java.lang.Object>
Overrides:
get in class java.util.AbstractMap<java.lang.Object,java.lang.Object>
Parameters:
key - the key
Returns:
the value of this key
See Also:
Map.get(java.lang.Object)


Copyright © 2001-2013. All Rights Reserved.