@FunctionalInterface public interface ConfigurationStorer
| Modifier and Type | Interface and Description |
|---|---|
static interface |
ConfigurationStorer.Defaults |
static class |
ConfigurationStorer.FileStorer |
static class |
ConfigurationStorer.OutputStreamStorer |
static class |
ConfigurationStorer.PathStorer |
static class |
ConfigurationStorer.UrlStorer |
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationStorer |
New(File file)
Pseudo-constructor method to create a new
ConfigurationStorer. |
static ConfigurationStorer |
New(File file,
Charset charset)
Pseudo-constructor method to create a new
ConfigurationStorer. |
static ConfigurationStorer |
New(OutputStream outputStream)
Pseudo-constructor method to create a new
ConfigurationStorer. |
static ConfigurationStorer |
New(OutputStream outputStream,
Charset charset)
Pseudo-constructor method to create a new
ConfigurationStorer. |
static ConfigurationStorer |
New(Path path)
Pseudo-constructor method to create a new
ConfigurationStorer. |
static ConfigurationStorer |
New(Path path,
Charset charset)
Pseudo-constructor method to create a new
ConfigurationStorer. |
static ConfigurationStorer |
New(URL url)
Pseudo-constructor method to create a new
ConfigurationStorer. |
static ConfigurationStorer |
New(URL url,
Charset charset)
Pseudo-constructor method to create a new
ConfigurationStorer. |
void |
storeConfiguration(String configurationData)
Stores the configuration data to an external target.
|
void storeConfiguration(String configurationData)
configurationData - the data to exportstatic ConfigurationStorer New(Path path)
ConfigurationStorer.path - the target pathConfigurationStorerNew(Path, Charset),
ConfigurationStorer.Defaults.defaultCharset()static ConfigurationStorer New(Path path, Charset charset)
ConfigurationStorer.path - the target pathcharset - the charset to use to convert the configuration data into binary formConfigurationStorerstatic ConfigurationStorer New(File file)
ConfigurationStorer.file - the target fileConfigurationStorerNew(File, Charset),
ConfigurationStorer.Defaults.defaultCharset()static ConfigurationStorer New(File file, Charset charset)
ConfigurationStorer.file - the target filecharset - the charset to use to convert the configuration data into binary formConfigurationStorerstatic ConfigurationStorer New(URL url)
ConfigurationStorer.url - the target urlConfigurationStorerNew(URL, Charset),
ConfigurationStorer.Defaults.defaultCharset()static ConfigurationStorer New(URL url, Charset charset)
ConfigurationStorer.url - the target urlcharset - the charset to use to convert the configuration data into binary formConfigurationStorerstatic ConfigurationStorer New(OutputStream outputStream)
ConfigurationStorer.outputStream - the target output streamConfigurationStorerNew(OutputStream, Charset),
ConfigurationStorer.Defaults.defaultCharset()static ConfigurationStorer New(OutputStream outputStream, Charset charset)
ConfigurationStorer.outputStream - the target output streamcharset - the charset to use to convert the configuration data into binary formConfigurationStorerCopyright © 2022 MicroStream Software. All rights reserved.