Uses of Class
org.apache.commons.configuration2.builder.FileBasedConfigurationBuilder
Package
Description
This package contains the implementations of configuration builder classes used to create new
Configuration
objects.
A package containing the implementation of the builder for combined configurations.
This package defines a fluent API for setting up fully configured configuration builders.
-
Uses of FileBasedConfigurationBuilder in org.apache.commons.configuration2.builder
Modifier and TypeClassDescriptionclass
A specializedConfigurationBuilder
implementation which can handle configurations read from aFileHandler
and supports reloading.Modifier and TypeMethodDescriptionFileBasedConfigurationBuilder.configure
(BuilderParameters... params) Appends the content of the specifiedBuilderParameters
objects to the current initialization parameters. -
Uses of FileBasedConfigurationBuilder in org.apache.commons.configuration2.builder.combined
Modifier and TypeMethodDescriptionprotected FileBasedConfigurationBuilder<T>
MultiFileConfigurationBuilder.createInitializedManagedBuilder
(String fileName, Map<String, Object> params) Creates a fully initialized builder for a managed configuration.protected FileBasedConfigurationBuilder<T>
MultiFileConfigurationBuilder.createManagedBuilder
(String fileName, Map<String, Object> params) Creates a builder for a managed configuration.protected FileBasedConfigurationBuilder<T>
ReloadingMultiFileConfigurationBuilder.createManagedBuilder
(String fileName, Map<String, Object> params) Creates a builder for a managed configuration.MultiFileConfigurationBuilder.getManagedBuilder()
Gets the managedFileBasedConfigurationBuilder
for the current file name pattern.Modifier and TypeMethodDescriptionprotected ConcurrentMap<String,
FileBasedConfigurationBuilder<T>> MultiFileConfigurationBuilder.getManagedBuilders()
Gets the map with the managed builders created so far by thisMultiFileConfigurationBuilder
. -
Uses of FileBasedConfigurationBuilder in org.apache.commons.configuration2.builder.fluent
Modifier and TypeMethodDescription<T extends FileBasedConfiguration>
FileBasedConfigurationBuilder<T>Configurations.fileBasedBuilder
(Class<T> configClass, File file) Creates aFileBasedConfigurationBuilder
for the specified configuration class and initializes it with the file to be loaded.<T extends FileBasedConfiguration>
FileBasedConfigurationBuilder<T>Configurations.fileBasedBuilder
(Class<T> configClass, String path) Creates aFileBasedConfigurationBuilder
for the specified configuration class and initializes it with the path to the file to be loaded.<T extends FileBasedConfiguration>
FileBasedConfigurationBuilder<T>Configurations.fileBasedBuilder
(Class<T> configClass, URL url) Creates aFileBasedConfigurationBuilder
for the specified configuration class and initializes it with the URL to the file to be loaded.Configurations.iniBuilder
(File file) Creates a builder for aINIConfiguration
and initializes it with the given file to be loaded.Configurations.iniBuilder
(String path) Creates a builder for aINIConfiguration
and initializes it with the file file identified by the given path.Configurations.iniBuilder
(URL url) Creates a builder for aINIConfiguration
and initializes it with the given URL to be loaded.Configurations.propertiesBuilder()
Creates a builder for aPropertiesConfiguration
.Configurations.propertiesBuilder
(File file) Creates a builder for aPropertiesConfiguration
and initializes it with the given file to be loaded.Configurations.propertiesBuilder
(String path) Creates a builder for aPropertiesConfiguration
and initializes it with the given path to the file to be loaded.Configurations.propertiesBuilder
(URL url) Creates a builder for aPropertiesConfiguration
and initializes it with the given URL to be loaded.Configurations.propertiesBuilder
(PropertiesBuilderParameters parameters) Creates a builder for aPropertiesConfiguration
and initializes it with the given parameters to be loaded.Configurations.xmlBuilder
(File file) Creates a builder for aXMLConfiguration
and initializes it with the given file to be loaded.Configurations.xmlBuilder
(String path) Creates a builder for aXMLConfiguration
and initializes it with the given path to the file to be loaded.Configurations.xmlBuilder
(URL url) Creates a builder for aXMLConfiguration
and initializes it with the given URL to be loaded.