Uses of Class
org.apache.commons.configuration2.builder.FileBasedBuilderParametersImpl
-
Packages that use FileBasedBuilderParametersImpl Package Description org.apache.commons.configuration2.builder This package contains the implementations of configuration builder classes used to create newConfiguration
objects. -
-
Uses of FileBasedBuilderParametersImpl in org.apache.commons.configuration2.builder
Subclasses of FileBasedBuilderParametersImpl in org.apache.commons.configuration2.builder Modifier and Type Class Description class
HierarchicalBuilderParametersImpl
A specialized parameters object for hierarchical configurations.class
INIBuilderParametersImpl
A specialized parameters class for INI configuration.class
PropertiesBuilderParametersImpl
A specialized parameter class for configuringPropertiesConfiguration
instances.class
XMLBuilderParametersImpl
A specialized parameters class for XML configuration.Methods in org.apache.commons.configuration2.builder that return FileBasedBuilderParametersImpl Modifier and Type Method Description FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. clone()
Clones this object.static FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. fromMap(java.util.Map<java.lang.String,?> map)
Creates a newFileBasedBuilderParametersImpl
object from the content of the given map.static FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. fromParameters(java.util.Map<java.lang.String,?> params)
Looks up an instance of this class in the specified parameters map.static FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. fromParameters(java.util.Map<java.lang.String,?> params, boolean createIfMissing)
Looks up an instance of this class in the specified parameters map and optionally creates a new one if none is found.FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setBasePath(java.lang.String path)
FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setEncoding(java.lang.String enc)
FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setFile(java.io.File file)
FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setFileName(java.lang.String name)
FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setFileSystem(FileSystem fs)
FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setLocationStrategy(FileLocationStrategy strategy)
FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setPath(java.lang.String path)
FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setReloadingDetectorFactory(ReloadingDetectorFactory reloadingDetectorFactory)
FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setReloadingRefreshDelay(java.lang.Long reloadingRefreshDelay)
FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setURL(java.net.URL url)
FileBasedBuilderParametersImpl
FileBasedBuilderParametersImpl. setURL(java.net.URL url, URLConnectionOptions urlConnectionOptions)
Methods in org.apache.commons.configuration2.builder with parameters of type FileBasedBuilderParametersImpl Modifier and Type Method Description ReloadingDetector
DefaultReloadingDetectorFactory. createReloadingDetector(FileHandler handler, FileBasedBuilderParametersImpl params)
ReloadingDetector
ReloadingDetectorFactory. createReloadingDetector(FileHandler handler, FileBasedBuilderParametersImpl params)
Creates a newReloadingDetector
object based on the passed in parameters.protected ReloadingDetector
ReloadingFileBasedConfigurationBuilder. createReloadingDetector(FileHandler handler, FileBasedBuilderParametersImpl fbparams)
Creates aReloadingDetector
which monitors the passed inFileHandler
.private static ReloadingDetectorFactory
ReloadingFileBasedConfigurationBuilder. fetchDetectorFactory(FileBasedBuilderParametersImpl params)
Returns aReloadingDetectorFactory
either from the passed in parameters or a default factory.
-