Package io.helidon.config.yaml
Class YamlConfigParserBuilder
- java.lang.Object
-
- io.helidon.config.yaml.YamlConfigParserBuilder
-
- All Implemented Interfaces:
Builder<ConfigParser>
,Supplier<ConfigParser>
public final class YamlConfigParserBuilder extends Object implements Builder<ConfigParser>
YAML ConfigParser Builder.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigParser
build()
Builds new instance of YAML ConfigParser.static ConfigParser
buildDefault()
Creates new instance of YAML ConfigParser with default behaviour, i.e.static YamlConfigParserBuilder
create()
Creates new instance of Builder.
-
-
-
Method Detail
-
buildDefault
public static ConfigParser buildDefault()
Creates new instance of YAML ConfigParser with default behaviour, i.e. with same behaviour as in case the parser is loaded automatically byServiceLoader
(seepackage description
).- Returns:
- new instance YAML ConfigParser
- See Also:
io.helidon.config.spi
-
create
public static YamlConfigParserBuilder create()
Creates new instance of Builder.- Returns:
- new instance of Builder.
-
build
public ConfigParser build()
Builds new instance of YAML ConfigParser.- Specified by:
build
in interfaceBuilder<ConfigParser>
- Returns:
- new instance of YAML ConfigParser.
-
-