Uses of Interface
one.microstream.configuration.types.ConfigurationLoader
Package | Description |
---|---|
one.microstream.configuration.types | |
one.microstream.storage.embedded.configuration.types |
-
Uses of ConfigurationLoader in one.microstream.configuration.types
Classes in one.microstream.configuration.types that implement ConfigurationLoader Modifier and Type Class Description static class
ConfigurationLoader.FileLoader
static class
ConfigurationLoader.InputStreamLoader
static class
ConfigurationLoader.PathLoader
static class
ConfigurationLoader.UrlLoader
Methods in one.microstream.configuration.types that return ConfigurationLoader Modifier and Type Method Description static ConfigurationLoader
ConfigurationLoader. New(File file)
Tries to load the configuration fromfile
.static ConfigurationLoader
ConfigurationLoader. New(File file, Charset charset)
Tries to load the configuration fromfile
.static ConfigurationLoader
ConfigurationLoader. New(InputStream inputStream)
Tries to load the configuration from theInputStream
inputStream
.static ConfigurationLoader
ConfigurationLoader. New(InputStream inputStream, Charset charset)
Tries to load the configuration from theInputStream
inputStream
.static ConfigurationLoader
ConfigurationLoader. New(String path)
Loads the configuration from the given resource.static ConfigurationLoader
ConfigurationLoader. New(String path, Charset charset)
Loads the configuration from the given resource.static ConfigurationLoader
ConfigurationLoader. New(URL url)
Tries to load the configuration from the URLurl
.static ConfigurationLoader
ConfigurationLoader. New(URL url, Charset charset)
Tries to load the configuration from the URLurl
.static ConfigurationLoader
ConfigurationLoader. New(Path path)
Tries to load the configuration frompath
.static ConfigurationLoader
ConfigurationLoader. New(Path path, Charset charset)
Tries to load the configuration frompath
.Methods in one.microstream.configuration.types with parameters of type ConfigurationLoader Modifier and Type Method Description default Configuration.Builder
Configuration.Builder. load(ConfigurationLoader loader, ConfigurationParser parser)
Loads values and child-configurations from the specified source into this builder.static Configuration
Configuration. Load(ConfigurationLoader loader, ConfigurationParser parser)
Convenience method to load a configuration from an external source. -
Uses of ConfigurationLoader in one.microstream.storage.embedded.configuration.types
Methods in one.microstream.storage.embedded.configuration.types with parameters of type ConfigurationLoader Modifier and Type Method Description static EmbeddedStorageConfigurationBuilder
EmbeddedStorageConfiguration. load(ConfigurationLoader loader, ConfigurationParser parser)
Tries to load the storage configuration based on a given loader and parser.