Methods Summary |
---|
public java.lang.String[] | getKeys(java.lang.String index)This method returns all the keys for the given index. The index is
name before the first . for a given property. For example.
If there's a property called http.server.port. The index name for
this property is http
|
public java.lang.Object | getObject(java.lang.String key)This method gets an Object associated with the given key.
|
public java.lang.String | getProperty(java.lang.String key)This method gets a property value associated with the given key.
|
public void | removeObject(java.lang.String key)This method removes an Object with the given key.
|
public void | removeProperty(java.lang.String key)This method removes value corresponding to the key.
|
public void | setObject(java.lang.String key, java.lang.Object obj)This method associates an Object with the given key. The Object
must implement Serializable interface.
|
public void | setProperty(java.lang.String key, java.lang.String value)This method associates a property value with the given key.
|