Fields
| Name | Description |
|---|---|
| defaults | A property list that contains default values for any keys not found in this property list. |
Constructors
| Name | Description |
|---|---|
| Properties() | Creates an empty property list with no default values. |
| Properties(Properties) | Creates an empty property list with the specified defaults. |
Methods
| Name | Description |
|---|---|
| getProperty(String) | Searches for the property with the specified key in this property list. |
| getProperty(String, String) | Searches for the property with the specified key in this property list. |
| list(PrintStream) | Prints this property list out to the specified output stream. |
| list(PrintWriter) | Prints this property list out to the specified output stream. |
| load(InputStream) | Reads a property list from an input stream. |
| propertyNames() | Returns an enumeration of all the keys in this property list, including the keys in the default property list. |
| save(OutputStream, String) | Stores this property list to the specified output stream. |