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
Subclasses with type arguments of type YAMLFactoryBuilder in com.fasterxml.jackson.dataformat.yamlModifier and TypeClassDescriptionclassTSFBuilderimplementation for constructingYAMLFactoryinstances.Methods in com.fasterxml.jackson.dataformat.yaml that return YAMLFactoryBuilderModifier and TypeMethodDescriptionstatic YAMLFactoryBuilderYAMLFactory.builder()Main factory method to use for constructingYAMLFactoryinstances 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 asnullfor backwards compatibility (which means the dumper options are derived based onYAMLGenerator.Features).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 asnullfor backwards compatibility (which means whatever default settingsSnakeYAMLdeems best).YAMLFactory.rebuild()YAMLFactoryBuilder.stringQuotingChecker(StringQuotingChecker sqc) Method for specifying either customStringQuotingCheckerto use instead of default one, or, that default one (seeStringQuotingChecker.Default.instance()) is to be used (when passingnullYAMLFactoryBuilder.yamlVersionToWrite(org.yaml.snakeyaml.DumperOptions.Version v) Method for specifying YAML version for generator to use (to produce compliant output); ifnullpassed, will letSnakeYAMLuse its default settings.Constructors in com.fasterxml.jackson.dataformat.yaml with parameters of type YAMLFactoryBuilderModifierConstructorDescriptionprotectedConstructors used byYAMLFactoryBuilderfor instantiation.