Uses of Class
org.apache.commons.configuration2.builder.BasicBuilderParameters
-
Packages that use BasicBuilderParameters Package Description org.apache.commons.configuration2.builder This package contains the implementations of configuration builder classes used to create newConfiguration
objects.org.apache.commons.configuration2.builder.combined A package containing the implementation of the builder for combined configurations.org.apache.commons.configuration2.builder.fluent This package defines a fluent API for setting up fully configured configuration builders. -
-
Uses of BasicBuilderParameters in org.apache.commons.configuration2.builder
Subclasses of BasicBuilderParameters in org.apache.commons.configuration2.builder Modifier and Type Class Description class
DatabaseBuilderParametersImpl
A specialized parameters object for database configurations.class
FileBasedBuilderParametersImpl
An implementation ofBuilderParameters
which contains parameters related toConfiguration
implementations that are loaded from files.class
HierarchicalBuilderParametersImpl
A specialized parameters object for hierarchical configurations.class
INIBuilderParametersImpl
A specialized parameters class for INI configuration.class
JndiBuilderParametersImpl
A specialized parameters object for JNDI configurations.class
PropertiesBuilderParametersImpl
A specialized parameter class for configuringPropertiesConfiguration
instances.class
XMLBuilderParametersImpl
A specialized parameters class for XML configuration.Methods in org.apache.commons.configuration2.builder that return BasicBuilderParameters Modifier and Type Method Description BasicBuilderParameters
BasicBuilderParameters. clone()
Clones this object.BasicBuilderParameters
BasicBuilderParameters. setBeanHelper(BeanHelper beanHelper)
Sets aBeanHelper
object to be used by the configuration builder.BasicBuilderParameters
BasicBuilderParameters. setConfigurationDecoder(ConfigurationDecoder decoder)
Sets theConfigurationDecoder
object for this configuration.BasicBuilderParameters
BasicBuilderParameters. setConversionHandler(ConversionHandler handler)
Sets theConversionHandler
object for this configuration.BasicBuilderParameters
BasicBuilderParameters. setDefaultLookups(java.util.Collection<? extends Lookup> lookups)
Adds additional defaultLookup
objects (i.e.BasicBuilderParameters
BasicBuilderParameters. setInterpolator(ConfigurationInterpolator ci)
Sets theConfigurationInterpolator
to be used for this configuration.BasicBuilderParameters
BasicBuilderParameters. setListDelimiterHandler(ListDelimiterHandler handler)
Sets the value of the listDelimiterHandler property.BasicBuilderParameters
BasicBuilderParameters. setLogger(ConfigurationLogger log)
Sets the logger property.BasicBuilderParameters
BasicBuilderParameters. setParentInterpolator(ConfigurationInterpolator parent)
Sets the parentConfigurationInterpolator
for this configuration'sConfigurationInterpolator
.BasicBuilderParameters
BasicBuilderParameters. setPrefixLookups(java.util.Map<java.lang.String,? extends Lookup> lookups)
Sets additionalLookup
objects for specific prefixes for this configuration object.BasicBuilderParameters
BasicBuilderParameters. setSynchronizer(Synchronizer sync)
Sets theSynchronizer
object for this configuration.BasicBuilderParameters
BasicBuilderParameters. setThrowExceptionOnMissing(boolean b)
Sets the value of the throwExceptionOnMissing property. -
Uses of BasicBuilderParameters in org.apache.commons.configuration2.builder.combined
Subclasses of BasicBuilderParameters in org.apache.commons.configuration2.builder.combined Modifier and Type Class Description class
CombinedBuilderParametersImpl
A specialized parameters object for aCombinedConfigurationBuilder
.class
MultiFileBuilderParametersImpl
A specialized parameters object forMultiFileConfigurationBuilder
. -
Uses of BasicBuilderParameters in org.apache.commons.configuration2.builder.fluent
Methods in org.apache.commons.configuration2.builder.fluent that return BasicBuilderParameters Modifier and Type Method Description BasicBuilderParameters
Parameters. basic()
Creates a new instance of a parameters object for basic configuration properties.
-