Uses of Class
org.apache.commons.configuration2.PropertiesConfiguration
Package
Description
The Configuration main package.
This package defines a fluent API for setting up fully configured configuration builders.
-
Uses of PropertiesConfiguration in org.apache.commons.configuration2
Modifier and TypeMethodDescriptionvoid
PropertiesConfigurationLayout.load
(PropertiesConfiguration config, Reader reader) Reads a properties file and stores its internal structure.void
PropertiesConfigurationLayout.save
(PropertiesConfiguration config, 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
Modifier and TypeMethodDescriptionConfigurations.properties
(File file) Creates aPropertiesConfiguration
instance from the content of the given file.Configurations.properties
(String path) Creates aPropertiesConfiguration
instance from the content of the file identified by the given path.Configurations.properties
(URL url) Creates aPropertiesConfiguration
instance from the content of the given URL.Modifier and TypeMethodDescriptionConfigurations.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.