Uses of Interface
org.apache.commons.configuration2.builder.combined.ConfigurationBuilderProvider
-
Packages that use ConfigurationBuilderProvider Package Description org.apache.commons.configuration2.builder.combined A package containing the implementation of the builder for combined configurations. -
-
Uses of ConfigurationBuilderProvider in org.apache.commons.configuration2.builder.combined
Classes in org.apache.commons.configuration2.builder.combined that implement ConfigurationBuilderProvider Modifier and Type Class Description class
BaseConfigurationBuilderProvider
A fully-functional, reflection-based implementation of theConfigurationBuilderProvider
interface which can deal with the default tags defining configuration sources.class
CombinedConfigurationBuilderProvider
A specializedConfigurationBuilderProvider
implementation which deals with combined configuration builders.class
FileExtensionConfigurationBuilderProvider
A specialized implementation ofConfigurationBuilderProvider
which determines the name of the result configuration class based on the extension of the file to load.class
MultiFileConfigurationBuilderProvider
A specializedConfigurationBuilderProvider
implementation for integratingMultiFileConfigurationBuilder
withCombinedConfigurationBuilder
.Fields in org.apache.commons.configuration2.builder.combined declared as ConfigurationBuilderProvider Modifier and Type Field Description private static ConfigurationBuilderProvider[]
CombinedConfigurationBuilder. DEFAULT_PROVIDERS
An array with the providers for the default tags.private static ConfigurationBuilderProvider
CombinedConfigurationBuilder. PROPERTIES_PROVIDER
Constant for the provider for properties files.private static ConfigurationBuilderProvider
CombinedConfigurationBuilder. XML_PROVIDER
Constant for the provider for XML files.Fields in org.apache.commons.configuration2.builder.combined with type parameters of type ConfigurationBuilderProvider Modifier and Type Field Description private static java.util.Map<java.lang.String,ConfigurationBuilderProvider>
CombinedConfigurationBuilder. DEFAULT_PROVIDERS_MAP
A map with the default configuration builder providers.private java.util.Map<java.lang.String,ConfigurationBuilderProvider>
CombinedBuilderParametersImpl. providers
A map with registered configuration builder providers.Methods in org.apache.commons.configuration2.builder.combined that return ConfigurationBuilderProvider Modifier and Type Method Description ConfigurationBuilderProvider
CombinedBuilderParametersImpl. providerForTag(java.lang.String tagName)
Returns theConfigurationBuilderProvider
which is registered for the specified tag name or null if there is no registration for this tag.protected ConfigurationBuilderProvider
CombinedConfigurationBuilder. providerForTag(java.lang.String tagName)
Returns theConfigurationBuilderProvider
for the given tag.Methods in org.apache.commons.configuration2.builder.combined that return types with arguments of type ConfigurationBuilderProvider Modifier and Type Method Description private static java.util.Map<java.lang.String,ConfigurationBuilderProvider>
CombinedConfigurationBuilder. createDefaultProviders()
Creates the map with the default configuration builder providers.java.util.Map<java.lang.String,ConfigurationBuilderProvider>
CombinedBuilderParametersImpl. getProviders()
Gets an (unmodifiable) map with the currently registeredConfigurationBuilderProvider
objects.Methods in org.apache.commons.configuration2.builder.combined with parameters of type ConfigurationBuilderProvider Modifier and Type Method Description CombinedBuilderParametersImpl
CombinedBuilderParametersImpl. registerProvider(java.lang.String tagName, ConfigurationBuilderProvider provider)
Registers the givenConfigurationBuilderProvider
for the specified tag name.T
CombinedBuilderProperties. registerProvider(java.lang.String tagName, ConfigurationBuilderProvider provider)
Registers the givenConfigurationBuilderProvider
for the specified tag name.Method parameters in org.apache.commons.configuration2.builder.combined with type arguments of type ConfigurationBuilderProvider Modifier and Type Method Description CombinedBuilderParametersImpl
CombinedBuilderParametersImpl. registerMissingProviders(java.util.Map<java.lang.String,ConfigurationBuilderProvider> providers)
Registers allConfigurationBuilderProvider
s in the given map to this object which have not yet been registered.
-