Modifier and Type | Field and Description |
---|---|
private final Properties | |
private final Properties |
Access | Constructor and Description |
---|---|
public |
Modifier and Type | Method and Description |
---|---|
private static void | addAllNames(Properties src, HashSet<Object> dest)
Add all property names in the Properties object |
public String | getProperty(String
the property key. key)Overrides java. |
public String | getProperty(String
the hashtable key. key, String a default value. defaultValue)Overrides java. |
public Enumeration | propertyNames()
Overrides java. |
public Object | put(Object
the hashtable key key, Object the value value)Overrides java. Implements java. key to the specified
value in this hashtable.
|
read | back to summary |
---|---|
private final Properties read |
write | back to summary |
---|---|
private final Properties write |
DoubleProperties | back to summary |
---|---|
public DoubleProperties(Properties read, Properties write) |
addAllNames | back to summary |
---|---|
private static void addAllNames(Properties src, HashSet<Object> dest) Add all property names in the Properties object |
getProperty | back to summary |
---|---|
public String getProperty(String key) Overrides java. Doc from java. Searches for the property with the specified key in this property list.
If the key is not found in this property list, the default property list,
and its defaults, recursively, are then checked. The method returns
|
getProperty | back to summary |
---|---|
public String getProperty(String key, String defaultValue) Overrides java. Doc from java. Searches for the property with the specified key in this property list. If the key is not found in this property list, the default property list, and its defaults, recursively, are then checked. The method returns the default value argument if the property is not found. |
propertyNames | back to summary |
---|---|
public Enumeration Overrides java. Doc from java. Returns an enumeration of all the keys in this property list, including distinct keys in the default property list if a key of the same name has not already been found from the main properties list.
|
put | back to summary |
---|---|
public Object put(Object key, Object value) Overrides java. Implements java. Doc from java. Maps the specified
The value can be retrieved by calling the |