org.jfree.util
public interface ExtendedConfiguration extends Configuration
Method Summary | |
---|---|
boolean | getBoolProperty(String name)
Returns the boolean value of a given configuration property. |
boolean | getBoolProperty(String name, boolean defaultValue)
Returns the boolean value of a given configuration property. |
int | getIntProperty(String name)
Returns a given property as int value. |
int | getIntProperty(String name, int defaultValue)
Returns a given property as int value. |
boolean | isPropertySet(String name)
Checks, whether a given property is defined.
|
Parameters: name the name of the property
Returns: the boolean value of the property.
Parameters: name the name of the property defaultValue the default value to be returned if the property is not set
Returns: the boolean value of the property.
Parameters: name the name of the property
Returns: the parsed number value or zero
Parameters: name the name of the property defaultValue the value to be returned if the property is no integer value
Returns: the parsed number value or the specified default value
Parameters: name the name of the property
Returns: true, if the property is defined, false otherwise.