Uses of Interface
org.apache.commons.configuration2.builder.combined.ConfigurationBuilderProvider
Packages that use ConfigurationBuilderProvider
Package
Description
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 ConfigurationBuilderProviderModifier and TypeClassDescriptionclass
A fully-functional, reflection-based implementation of theConfigurationBuilderProvider
interface which can deal with the default tags defining configuration sources.class
A specializedConfigurationBuilderProvider
implementation which deals with combined configuration builders.class
A specialized implementation ofConfigurationBuilderProvider
which determines the name of the result configuration class based on the extension of the file to load.class
A specializedConfigurationBuilderProvider
implementation for integratingMultiFileConfigurationBuilder
withCombinedConfigurationBuilder
.Fields in org.apache.commons.configuration2.builder.combined declared as ConfigurationBuilderProviderModifier and TypeFieldDescriptionprivate static final ConfigurationBuilderProvider[]
CombinedConfigurationBuilder.DEFAULT_PROVIDERS
An array with the providers for the default tags.private static final ConfigurationBuilderProvider
CombinedConfigurationBuilder.PROPERTIES_PROVIDER
Constant for the provider for properties files.private static final ConfigurationBuilderProvider
CombinedConfigurationBuilder.XML_PROVIDER
Constant for the provider for XML files.Fields in org.apache.commons.configuration2.builder.combined with type parameters of type ConfigurationBuilderProviderModifier and TypeFieldDescriptionprivate static final Map<String,
ConfigurationBuilderProvider> CombinedConfigurationBuilder.DEFAULT_PROVIDERS_MAP
A map with the default configuration builder providers.private final Map<String,
ConfigurationBuilderProvider> CombinedBuilderParametersImpl.providers
A map with registered configuration builder providers.Methods in org.apache.commons.configuration2.builder.combined that return ConfigurationBuilderProviderModifier and TypeMethodDescriptionCombinedBuilderParametersImpl.providerForTag
(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
(String tagName) Returns theConfigurationBuilderProvider
for the given tag.Methods in org.apache.commons.configuration2.builder.combined that return types with arguments of type ConfigurationBuilderProviderModifier and TypeMethodDescriptionprivate static Map<String,
ConfigurationBuilderProvider> CombinedConfigurationBuilder.createDefaultProviders()
Creates the map with the default configuration builder providers.CombinedBuilderParametersImpl.getProviders()
Gets an (unmodifiable) map with the currently registeredConfigurationBuilderProvider
objects.Methods in org.apache.commons.configuration2.builder.combined with parameters of type ConfigurationBuilderProviderModifier and TypeMethodDescriptionCombinedBuilderParametersImpl.registerProvider
(String tagName, ConfigurationBuilderProvider provider) Registers the givenConfigurationBuilderProvider
for the specified tag name.CombinedBuilderProperties.registerProvider
(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 ConfigurationBuilderProviderModifier and TypeMethodDescriptionCombinedBuilderParametersImpl.registerMissingProviders
(Map<String, ConfigurationBuilderProvider> providers) Registers allConfigurationBuilderProvider
s in the given map to this object which have not yet been registered.