Method Summary |
|
public boolean | containsKey(String key) This method returns TRUE if the key supplied is present in the data. |
public boolean | getBoolean(String key) The method that will retrieve the boolean value from the configuration. |
public boolean | getBoolean(String key, boolean defValue) The method that will retrieve the boolean value from the configuration. |
public String | getClassName() This method returns the name of the class. |
public Set | getKeys() |
public long | getLong(String key) The method that will retrieve the long value from the configuration. |
public long | getLong(String key, long defValue) The method that will retrieve the long value from the configuration. |
public String | getString(String key) |
public String | getString(String key, String defValue) |
public boolean | isBoolean(String key) This method returns true if the object is a boolean. |
public boolean | isLong(String key) This method returns true if the object is a long. |
public boolean | isString(String key) This method returns true if the object is a string. |
public void | saveConfiguration() This method will save the configuration information. |
public void | setBoolean(String key, boolean value) The method to set a configuration key value. |
public void | setLong(String key, long value) The method to set a configuration key value. |
public void | setString(String key, String value) This method set the configuration value for the key. |