Class DefaultConfiguration
- java.lang.Object
-
- java.util.Dictionary<K,V>
-
- java.util.Hashtable<Object,Object>
-
- java.util.Properties
-
- org.pentaho.reporting.libraries.base.config.DefaultConfiguration
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<Object,Object>
,Configuration
,ModifiableConfiguration
public class DefaultConfiguration extends Properties implements ModifiableConfiguration
Default configuration.- Author:
- Thomas Morgner.
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.Properties
defaults
-
-
Constructor Summary
Constructors Constructor Description DefaultConfiguration()
Creates an empty property list with no default values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<String>
findPropertyKeys(String prefix)
Searches all property keys that start with a given prefix.Enumeration<String>
getConfigProperties()
Returns the configuration properties.String
getConfigProperty(String key)
Returns the configuration property with the specified key.String
getConfigProperty(String key, String defaultValue)
Returns the configuration property with the specified key (or the specified default value if there is no such property).void
setConfigProperty(String key, String value)
Sets the value of a configuration property.-
Methods inherited from class java.util.Properties
clear, clone, compute, computeIfAbsent, computeIfPresent, contains, containsKey, containsValue, elements, entrySet, equals, forEach, get, getOrDefault, getProperty, getProperty, hashCode, isEmpty, keys, keySet, list, list, load, load, loadFromXML, merge, propertyNames, put, putAll, putIfAbsent, rehash, remove, remove, replace, replace, replaceAll, save, setProperty, size, store, store, storeToXML, storeToXML, storeToXML, stringPropertyNames, toString, values
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.pentaho.reporting.libraries.base.config.Configuration
clone
-
-
-
-
Method Detail
-
getConfigProperty
public String getConfigProperty(String key)
Returns the configuration property with the specified key.- Specified by:
getConfigProperty
in interfaceConfiguration
- Parameters:
key
- the property key.- Returns:
- the property value.
-
getConfigProperty
public String getConfigProperty(String key, String defaultValue)
Returns the configuration property with the specified key (or the specified default value if there is no such property). If the property is not defined in this configuration, the code will lookup the property in the parent configuration.- Specified by:
getConfigProperty
in interfaceConfiguration
- Parameters:
key
- the property key.defaultValue
- the default value.- Returns:
- the property value.
-
findPropertyKeys
public Iterator<String> findPropertyKeys(String prefix)
Searches all property keys that start with a given prefix.- Specified by:
findPropertyKeys
in interfaceConfiguration
- Parameters:
prefix
- the prefix that all selected property keys should share- Returns:
- the properties as iterator.
-
getConfigProperties
public Enumeration<String> getConfigProperties()
Description copied from interface:Configuration
Returns the configuration properties.- Specified by:
getConfigProperties
in interfaceConfiguration
- Returns:
- The configuration properties.
-
setConfigProperty
public void setConfigProperty(String key, String value)
Sets the value of a configuration property.- Specified by:
setConfigProperty
in interfaceModifiableConfiguration
- Parameters:
key
- the property key.value
- the property value.
-
-