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 YAMLFactoryBuilderYAMLFactory. builder()Main factory method to use for constructingYAMLFactoryinstances with different configuration.YAMLFactoryBuilderYAMLFactoryBuilder. configure(YAMLGenerator.Feature f, boolean state)YAMLFactoryBuilderYAMLFactoryBuilder. configure(YAMLParser.Feature f, boolean state)YAMLFactoryBuilderYAMLFactoryBuilder. disable(YAMLGenerator.Feature f)YAMLFactoryBuilderYAMLFactoryBuilder. disable(YAMLGenerator.Feature first, YAMLGenerator.Feature... other)YAMLFactoryBuilderYAMLFactoryBuilder. disable(YAMLParser.Feature f)YAMLFactoryBuilderYAMLFactoryBuilder. disable(YAMLParser.Feature first, YAMLParser.Feature... other)YAMLFactoryBuilderYAMLFactoryBuilder. 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).YAMLFactoryBuilderYAMLFactoryBuilder. enable(YAMLGenerator.Feature f)YAMLFactoryBuilderYAMLFactoryBuilder. enable(YAMLGenerator.Feature first, YAMLGenerator.Feature... other)YAMLFactoryBuilderYAMLFactoryBuilder. enable(YAMLParser.Feature f)YAMLFactoryBuilderYAMLFactoryBuilder. enable(YAMLParser.Feature first, YAMLParser.Feature... other)YAMLFactoryBuilderYAMLFactoryBuilder. loaderOptions(org.yaml.snakeyaml.LoaderOptions loaderOptions)Configuration for underlying parser to follow, if specified; left asnullfor backwards compatibility (which means whatever default settingsSnakeYAMLdeems best).YAMLFactoryBuilderYAMLFactory. rebuild()YAMLFactoryBuilderYAMLFactoryBuilder. 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 passingnullYAMLFactoryBuilderYAMLFactoryBuilder. 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 YAMLFactoryBuilder Constructor Description YAMLFactory(YAMLFactoryBuilder b)Constructors used byYAMLFactoryBuilderfor instantiation.
-