Uses of Class
com.fasterxml.jackson.dataformat.yaml.YAMLFactoryBuilder
-
Packages that use YAMLFactoryBuilder Package Description com.fasterxml.jackson.dataformat.yaml 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 YAMLFactoryBuilder Modifier and Type Method Description static YAMLFactoryBuilder
YAMLFactory. builder()
Main factory method to use for constructingYAMLFactory
instances with different configuration.YAMLFactoryBuilder
YAMLFactoryBuilder. configure(YAMLGenerator.Feature f, boolean state)
YAMLFactoryBuilder
YAMLFactoryBuilder. configure(YAMLParser.Feature f, boolean state)
YAMLFactoryBuilder
YAMLFactoryBuilder. disable(YAMLGenerator.Feature f)
YAMLFactoryBuilder
YAMLFactoryBuilder. disable(YAMLGenerator.Feature first, YAMLGenerator.Feature... other)
YAMLFactoryBuilder
YAMLFactoryBuilder. disable(YAMLParser.Feature f)
YAMLFactoryBuilder
YAMLFactoryBuilder. disable(YAMLParser.Feature first, YAMLParser.Feature... other)
YAMLFactoryBuilder
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
YAMLFactoryBuilder. enable(YAMLGenerator.Feature f)
YAMLFactoryBuilder
YAMLFactoryBuilder. enable(YAMLGenerator.Feature first, YAMLGenerator.Feature... other)
YAMLFactoryBuilder
YAMLFactoryBuilder. enable(YAMLParser.Feature f)
YAMLFactoryBuilder
YAMLFactoryBuilder. enable(YAMLParser.Feature first, YAMLParser.Feature... other)
YAMLFactoryBuilder
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).YAMLFactoryBuilder
YAMLFactory. rebuild()
YAMLFactoryBuilder
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
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 YAMLFactoryBuilder Constructor Description YAMLFactory(YAMLFactoryBuilder b)
Constructors used byYAMLFactoryBuilder
for instantiation.
-