Uses of Class
com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
Packages that use YAMLFactoryBuilder
Package
Description
Main abstractions for Jackson YAML format backend, including
streaming reader ((
YAMLParser
),
writer (YAMLGenerator
)
(and factory to create them, YAMLFactory
)
as well as mapper (YAMLMapper
).-
Uses of YAMLFactoryBuilder in com.fasterxml.jackson.dataformat.yaml
Methods in com.fasterxml.jackson.dataformat.yaml that return YAMLFactoryBuilderModifier and TypeMethodDescriptionstatic YAMLFactoryBuilder
YAMLFactory.builder()
Main factory method to use for constructingYAMLFactory
instances with different configuration.YAMLFactoryBuilder.configure
(YAMLGenerator.Feature f, boolean state) YAMLFactoryBuilder.configure
(YAMLParser.Feature f, boolean state) YAMLFactoryBuilder.disable
(YAMLGenerator.Feature f) YAMLFactoryBuilder.disable
(YAMLGenerator.Feature first, YAMLGenerator.Feature... other) YAMLFactoryBuilder.disable
(YAMLParser.Feature f) YAMLFactoryBuilder.disable
(YAMLParser.Feature first, YAMLParser.Feature... other) YAMLFactoryBuilder.dumperOptions
(org.yaml.snakeyaml.DumperOptions dumperOptions) Configuration for underlying generator to follow, if specified; left asnull
for backwards compatibility (which means the dumper options are derived based onYAMLGenerator.Feature
s).YAMLFactoryBuilder.enable
(YAMLGenerator.Feature f) YAMLFactoryBuilder.enable
(YAMLGenerator.Feature first, YAMLGenerator.Feature... other) YAMLFactoryBuilder.enable
(YAMLParser.Feature f) YAMLFactoryBuilder.enable
(YAMLParser.Feature first, YAMLParser.Feature... other) YAMLFactoryBuilder.loaderOptions
(org.yaml.snakeyaml.LoaderOptions loaderOptions) Configuration for underlying parser to follow, if specified; left asnull
for backwards compatibility (which means whatever default settingsSnakeYAML
deems best).YAMLFactory.rebuild()
YAMLFactoryBuilder.stringQuotingChecker
(StringQuotingChecker sqc) Method for specifying either customStringQuotingChecker
to use instead of default one, or, that default one (seeStringQuotingChecker.Default.instance()
) is to be used (when passingnull
YAMLFactoryBuilder.yamlVersionToWrite
(org.yaml.snakeyaml.DumperOptions.Version v) Method for specifying YAML version for generator to use (to produce compliant output); ifnull
passed, will letSnakeYAML
use its default settings.Constructors in com.fasterxml.jackson.dataformat.yaml with parameters of type YAMLFactoryBuilderModifierConstructorDescriptionprotected
Constructors used byYAMLFactoryBuilder
for instantiation.