Uses of Class
org.apache.commons.configuration2.XMLConfiguration
-
Packages that use XMLConfiguration Package Description org.apache.commons.configuration2.builder.fluent This package defines a fluent API for setting up fully configured configuration builders. -
-
Uses of XMLConfiguration in org.apache.commons.configuration2.builder.fluent
Methods in org.apache.commons.configuration2.builder.fluent that return XMLConfiguration Modifier and Type Method Description XMLConfiguration
Configurations. xml(java.io.File file)
Creates aXMLConfiguration
instance from the content of the given file.XMLConfiguration
Configurations. xml(java.lang.String path)
Creates aXMLConfiguration
instance from the content of the file identified by the given path.XMLConfiguration
Configurations. xml(java.net.URL url)
Creates aXMLConfiguration
instance from the content of the given URL.Methods in org.apache.commons.configuration2.builder.fluent that return types with arguments of type XMLConfiguration Modifier and Type Method Description FileBasedConfigurationBuilder<XMLConfiguration>
Configurations. xmlBuilder(java.io.File file)
Creates a builder for aXMLConfiguration
and initializes it with the given file to be loaded.FileBasedConfigurationBuilder<XMLConfiguration>
Configurations. xmlBuilder(java.lang.String path)
Creates a builder for aXMLConfiguration
and initializes it with the given path to the file to be loaded.FileBasedConfigurationBuilder<XMLConfiguration>
Configurations. xmlBuilder(java.net.URL url)
Creates a builder for aXMLConfiguration
and initializes it with the given URL to be loaded.
-