Uses of Class
org.apache.commons.configuration2.PropertiesConfiguration
-
Packages that use PropertiesConfiguration Package Description org.apache.commons.configuration2 The Configuration main package.org.apache.commons.configuration2.builder.fluent This package defines a fluent API for setting up fully configured configuration builders. -
-
Uses of PropertiesConfiguration in org.apache.commons.configuration2
Methods in org.apache.commons.configuration2 with parameters of type PropertiesConfiguration Modifier and Type Method Description void
PropertiesConfigurationLayout. load(PropertiesConfiguration config, java.io.Reader reader)
Reads a properties file and stores its internal structure.void
PropertiesConfigurationLayout. save(PropertiesConfiguration config, java.io.Writer writer)
Writes the properties file to the given writer, preserving as much of its structure as possible. -
Uses of PropertiesConfiguration in org.apache.commons.configuration2.builder.fluent
Methods in org.apache.commons.configuration2.builder.fluent that return PropertiesConfiguration Modifier and Type Method Description PropertiesConfiguration
Configurations. properties(java.io.File file)
Creates aPropertiesConfiguration
instance from the content of the given file.PropertiesConfiguration
Configurations. properties(java.lang.String path)
Creates aPropertiesConfiguration
instance from the content of the file identified by the given path.PropertiesConfiguration
Configurations. properties(java.net.URL url)
Creates aPropertiesConfiguration
instance from the content of the given URL.Methods in org.apache.commons.configuration2.builder.fluent that return types with arguments of type PropertiesConfiguration Modifier and Type Method Description FileBasedConfigurationBuilder<PropertiesConfiguration>
Configurations. propertiesBuilder()
Creates a builder for aPropertiesConfiguration
.FileBasedConfigurationBuilder<PropertiesConfiguration>
Configurations. propertiesBuilder(java.io.File file)
Creates a builder for aPropertiesConfiguration
and initializes it with the given file to be loaded.FileBasedConfigurationBuilder<PropertiesConfiguration>
Configurations. propertiesBuilder(java.lang.String path)
Creates a builder for aPropertiesConfiguration
and initializes it with the given path to the file to be loaded.FileBasedConfigurationBuilder<PropertiesConfiguration>
Configurations. propertiesBuilder(java.net.URL url)
Creates a builder for aPropertiesConfiguration
and initializes it with the given URL to be loaded.FileBasedConfigurationBuilder<PropertiesConfiguration>
Configurations. propertiesBuilder(PropertiesBuilderParameters parameters)
Creates a builder for aPropertiesConfiguration
and initializes it with the given parameters to be loaded.
-