java.lang.Cloneable
, Configuration
, java.io.Serializable
ExtendedConfigurationWrapper
public interface ExtendedConfiguration extends Configuration
Modifier and Type | Method | Description |
---|---|---|
boolean |
getBoolProperty(java.lang.String name) |
Returns the boolean value of a given configuration property.
|
boolean |
getBoolProperty(java.lang.String name,
boolean defaultValue) |
Returns the boolean value of a given configuration property.
|
int |
getIntProperty(java.lang.String name) |
Returns a given property as int value.
|
int |
getIntProperty(java.lang.String name,
int defaultValue) |
Returns a given property as int value.
|
boolean |
isPropertySet(java.lang.String name) |
Checks, whether a given property is defined.
|
clone, findPropertyKeys, getConfigProperties, getConfigProperty, getConfigProperty
boolean isPropertySet(java.lang.String name)
name
- the name of the propertyint getIntProperty(java.lang.String name)
name
- the name of the propertyint getIntProperty(java.lang.String name, int defaultValue)
name
- the name of the propertydefaultValue
- the value to be returned if the property is no integer valueboolean getBoolProperty(java.lang.String name)
name
- the name of the propertyboolean getBoolProperty(java.lang.String name, boolean defaultValue)
name
- the name of the propertydefaultValue
- the default value to be returned if the property is not set