statement or not.
setLength(int) -
Method in class org.apache.commons.configuration.ConfigurationKey
Sets the new length of this configuration key.
setName(String) -
Method in class org.apache.commons.configuration.HierarchicalConfiguration.Node
Sets the name of this node.
setParent(HierarchicalConfiguration.Node) -
Method in class org.apache.commons.configuration.HierarchicalConfiguration.Node
Sets the parent of this node.
setPath(String) -
Method in class org.apache.commons.configuration.AbstractFileConfiguration
Sets the location of this configuration as a full path name.
setPrefix(String) -
Method in class org.apache.commons.configuration.JNDIConfiguration
Sets the prefix.
setPrefix(String) -
Method in class org.apache.commons.configuration.SubsetConfiguration
Set the prefix used to select the properties in the parent configuration.
setProperty(String, Object) -
Method in class org.apache.commons.configuration.AbstractConfiguration
Set a property, this will replace any previously set values. Set values
is implicitly a call to clearProperty(key), addProperty(key, value).
setProperty(String, Object) -
Method in class org.apache.commons.configuration.AbstractHierarchicalFileConfiguration
setProperty(String, Object) -
Method in interface org.apache.commons.configuration.Configuration
Set a property, this will replace any previously set values.
setProperty(String, Object) -
Method in class org.apache.commons.configuration.ConfigurationXMLReader
Dummy implementation of the interface method.
setProperty(String, Object) -
Method in class org.apache.commons.configuration.HierarchicalConfiguration
Sets the value of the specified property.
setProperty(String, Object) -
Method in class org.apache.commons.configuration.JNDIConfiguration
This operation is not supported and will throw an
UnsupportedOperationException.
setProperty(String, Object) -
Method in class org.apache.commons.configuration.SubsetConfiguration
Set a property, this will replace any previously set values. Set values
is implicitly a call to clearProperty(key), addProperty(key, value).
setReference(Object) -
Method in class org.apache.commons.configuration.HierarchicalConfiguration.Node
Sets the reference object for this node.
setRefreshDelay(long) -
Method in class org.apache.commons.configuration.reloading.FileChangedReloadingStrategy
Set the minimal time between two reloadings.
setReloadingStrategy(ReloadingStrategy) -
Method in class org.apache.commons.configuration.AbstractFileConfiguration
setReloadingStrategy(ReloadingStrategy) -
Method in class org.apache.commons.configuration.AbstractHierarchicalFileConfiguration
setReloadingStrategy(ReloadingStrategy) -
Method in interface org.apache.commons.configuration.FileConfiguration
Set the reloading strategy.
setRoot(HierarchicalConfiguration.Node) -
Method in class org.apache.commons.configuration.HierarchicalConfiguration
Sets the root node of this hierarchical configuration.
setRootElementName(String) -
Method in class org.apache.commons.configuration.XMLConfiguration
Sets the name of the root element.
setRootName(String) -
Method in class org.apache.commons.configuration.ConfigurationXMLReader
Sets the name for the root element.
setThrowExceptionOnMissing(boolean) -
Method in class org.apache.commons.configuration.AbstractConfiguration
Allows to set the throwExceptionOnMissing
flag.
setThrowExceptionOnMissing(boolean) -
Method in class org.apache.commons.configuration.SubsetConfiguration
Allows to set the throwExceptionOnMissing
flag. This
flag controls the behavior of property getter methods that return
objects if the requested property is missing. If the flag is set to
false (which is the default value), these methods will return
null. If set to true, they will throw a
NoSuchElementException
exception. Note that getter methods
for primitive data types are not affected by this flag.
Change the behaviour of the parent configuration if it supports this feature.
setURL(URL) -
Method in class org.apache.commons.configuration.AbstractFileConfiguration
Set the location of this configuration as a URL.
setURL(URL) -
Method in class org.apache.commons.configuration.AbstractHierarchicalFileConfiguration
setURL(URL) -
Method in interface org.apache.commons.configuration.FileConfiguration
The URL where the configuration is stored.
setValidating(boolean) -
Method in class org.apache.commons.configuration.XMLConfiguration
Sets the value of the validating flag.
setValue(Object) -
Method in class org.apache.commons.configuration.HierarchicalConfiguration.Node
Sets the value of this node.
setupDigesterInstance(Digester, String, ObjectCreationFactory, String, boolean) -
Method in class org.apache.commons.configuration.ConfigurationFactory
Sets up digester rules for a configuration to be loaded.
setupUnionRules(Digester, String) -
Method in class org.apache.commons.configuration.ConfigurationFactory
Sets up rules for configurations in the additional section.
split(String, char) -
Static method in class org.apache.commons.configuration.PropertyConverter
Split a string on the specified delimiter.
strategy -
Variable in class org.apache.commons.configuration.AbstractFileConfiguration
Holds a reference to the reloading strategy.
subset(String) -
Method in class org.apache.commons.configuration.AbstractConfiguration
Return a decorator Configuration containing every key from the current
Configuration that starts with the specified prefix. The prefix is
removed from the keys in the subset. For example, if the configuration
contains the following properties:
prefix.number = 1
prefix.string = Apache
prefixed.foo = bar
prefix = Jakarta
the Configuration returned by subset("prefix")
will contain
the properties:
number = 1
string = Apache
= Jakarta
(The key for the value "Jakarta" is an empty string)
Since the subset is a decorator and not a modified copy of the initial
Configuration, any change made to the subset is available to the
Configuration, and reciprocally.
subset(String) -
Method in interface org.apache.commons.configuration.Configuration
Return a decorator Configuration containing every key from the current
Configuration that starts with the specified prefix.
subset(String) -
Method in class org.apache.commons.configuration.HierarchicalConfiguration
Creates a new Configuration
object containing all keys
that start with the specified prefix.
subset(String) -
Method in class org.apache.commons.configuration.SubsetConfiguration
Return a decorator Configuration containing every key from the current
Configuration that starts with the specified prefix. The prefix is
removed from the keys in the subset. For example, if the configuration
contains the following properties:
prefix.number = 1
prefix.string = Apache
prefixed.foo = bar
prefix = Jakarta
the Configuration returned by subset("prefix")
will contain
the properties:
number = 1
string = Apache
= Jakarta
(The key for the value "Jakarta" is an empty string)
Since the subset is a decorator and not a modified copy of the initial
Configuration, any change made to the subset is available to the
Configuration, and reciprocally.