Uses of Class
io.helidon.config.spi.AbstractParsableConfigSource.Builder
-
Packages that use AbstractParsableConfigSource.Builder Package Description io.helidon.config Provides interfaces and classes for loading and working with immutable, tree-structured configuration data.io.helidon.config.etcd Etcd configuration source.io.helidon.config.git Git configuration source.io.helidon.config.spi Configuration SPI that defines the behavior developers can implement to extend the config system. -
-
Uses of AbstractParsableConfigSource.Builder in io.helidon.config
Methods in io.helidon.config that return AbstractParsableConfigSource.Builder Modifier and Type Method Description static AbstractParsableConfigSource.Builder<? extends AbstractParsableConfigSource.Builder<?,Path>,Path>
ConfigSources. classpath(String resource)
Provides aBuilder
for creating aConfigSource
from the specified resource located on the classpath of the current thread's context classloader.static AbstractParsableConfigSource.Builder<? extends AbstractParsableConfigSource.Builder<?,Path>,Path>
ConfigSources. file(String path)
Provides aBuilder
for creating aConfigSource
from the specified file path.static AbstractParsableConfigSource.Builder<? extends AbstractParsableConfigSource.Builder<?,URL>,URL>
ConfigSources. url(URL url)
Provides aBuilder
for creating aConfigSource
from the specified URL.Methods in io.helidon.config that return types with arguments of type AbstractParsableConfigSource.Builder Modifier and Type Method Description static AbstractParsableConfigSource.Builder<? extends AbstractParsableConfigSource.Builder<?,Path>,Path>
ConfigSources. classpath(String resource)
Provides aBuilder
for creating aConfigSource
from the specified resource located on the classpath of the current thread's context classloader.static AbstractParsableConfigSource.Builder<? extends AbstractParsableConfigSource.Builder<?,Path>,Path>
ConfigSources. file(String path)
Provides aBuilder
for creating aConfigSource
from the specified file path.static AbstractParsableConfigSource.Builder<? extends AbstractParsableConfigSource.Builder<?,URL>,URL>
ConfigSources. url(URL url)
Provides aBuilder
for creating aConfigSource
from the specified URL. -
Uses of AbstractParsableConfigSource.Builder in io.helidon.config.etcd
Subclasses of AbstractParsableConfigSource.Builder in io.helidon.config.etcd Modifier and Type Class Description class
EtcdConfigSourceBuilder
Etcd ConfigSource builder. -
Uses of AbstractParsableConfigSource.Builder in io.helidon.config.git
Subclasses of AbstractParsableConfigSource.Builder in io.helidon.config.git Modifier and Type Class Description class
GitConfigSourceBuilder
Git ConfigSource builder. -
Uses of AbstractParsableConfigSource.Builder in io.helidon.config.spi
Classes in io.helidon.config.spi with type parameters of type AbstractParsableConfigSource.Builder Modifier and Type Class Description static class
AbstractParsableConfigSource.Builder<B extends AbstractParsableConfigSource.Builder<B,T>,T>
CommonAbstractParsableConfigSource
Builder, suitable for concrete implementations of Builder that are related toConfigSource
s which extendAbstractParsableConfigSource
Constructors in io.helidon.config.spi with parameters of type AbstractParsableConfigSource.Builder Constructor Description AbstractParsableConfigSource(AbstractParsableConfigSource.Builder builder)
Initializes config source from builder.
-