Uses of Interface
org.apache.commons.configuration2.FileBasedConfiguration
Package
Description
The Configuration main package.
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.
Configuration classes supporting NeXT / OpenStep /GNUStep style configuration.
-
Uses of FileBasedConfiguration in org.apache.commons.configuration2
Modifier and TypeClassDescriptionclass
A specialized hierarchical configuration implementation for parsing ini files.class
A specialized hierarchical configuration class that is able to parse JSON documents.class
Wraps a BaseHierarchicalConfiguration and allows subtrees to be accessed via a configured path with replaceable tokens derived from the ConfigurationInterpolator.class
This is the "classic" Properties loader which loads the values from a single or multiple files (which can be chained with "include =".class
A specialized hierarchical configuration class that is able to parse XML documents.class
This configuration implements the XML properties format introduced in Java, see https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html.class
A specialized hierarchical configuration class that is able to parse YAML documents. -
Uses of FileBasedConfiguration in org.apache.commons.configuration2.builder
Modifier and TypeClassDescriptionclass
A specializedConfigurationBuilder
implementation which can handle configurations read from aFileHandler
.class
A specializedConfigurationBuilder
implementation which can handle configurations read from aFileHandler
and supports reloading. -
Uses of FileBasedConfiguration in org.apache.commons.configuration2.builder.combined
Modifier and TypeClassDescriptionclass
A specializedConfigurationBuilder
implementation providing access to multiple file-based configurations based on a file name pattern.class
A specializedMultiFileConfigurationBuilder
implementation which adds support for reloading. -
Uses of FileBasedConfiguration in org.apache.commons.configuration2.builder.fluent
Modifier and TypeMethodDescription<T extends FileBasedConfiguration>
TCreates an instance of the specified file-based configuration class from the content of the given file.<T extends FileBasedConfiguration>
TCreates an instance of the specified file-based configuration class from the content of the file identified by the given path.<T extends FileBasedConfiguration>
TCreates an instance of the specified file-based configuration class from the content of the given URL.<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. -
Uses of FileBasedConfiguration in org.apache.commons.configuration2.plist
Modifier and TypeClassDescriptionclass
NeXT / OpenStep style configuration.class
Property list file (plist) in XML FORMAT as used by macOS X (http://www.apple.com/DTDs/PropertyList-1.0.dtd).