Uses of Class
tools.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 tools.jackson.dataformat.yaml
Methods in tools.jackson.dataformat.yaml that return YAMLFactoryBuilderModifier and TypeMethodDescriptionstatic YAMLFactoryBuilderYAMLFactory.builder()Main factory method to use for constructingYAMLFactoryinstances with different configuration.YAMLFactoryBuilder.configure(YAMLReadFeature f, boolean state) YAMLFactoryBuilder.configure(YAMLWriteFeature f, boolean state) YAMLFactoryBuilder.disable(YAMLReadFeature f) YAMLFactoryBuilder.disable(YAMLReadFeature first, YAMLReadFeature... other) YAMLFactoryBuilder.disable(YAMLWriteFeature f) YAMLFactoryBuilder.disable(YAMLWriteFeature first, YAMLWriteFeature... other) YAMLFactoryBuilder.dumperOptions(org.snakeyaml.engine.v2.api.DumpSettings dumperOptions) Configuration for underlying generator to follow, if specified; left asnullfor backwards compatibility (which means the dumper options are derived based onYAMLWriteFeatures).YAMLFactoryBuilder.enable(YAMLReadFeature f) YAMLFactoryBuilder.enable(YAMLReadFeature first, YAMLReadFeature... other) YAMLFactoryBuilder.enable(YAMLWriteFeature f) YAMLFactoryBuilder.enable(YAMLWriteFeature first, YAMLWriteFeature... other) YAMLFactoryBuilder.loadSettings(org.snakeyaml.engine.v2.api.LoadSettings settings) 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.snakeyaml.engine.v2.common.SpecVersion v) Method for specifying YAML version for generator to use (to produce compliant output); ifnullpassed, will letSnakeYAMLuse its default settings.Constructors in tools.jackson.dataformat.yaml with parameters of type YAMLFactoryBuilderModifierConstructorDescriptionprotectedConstructors used byYAMLFactoryBuilderfor instantiation.