Uses of Class
com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
-
Packages that use StringQuotingChecker 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
).com.fasterxml.jackson.dataformat.yaml.util Helper classes for YAML backend. -
-
Uses of StringQuotingChecker in com.fasterxml.jackson.dataformat.yaml
Fields in com.fasterxml.jackson.dataformat.yaml declared as StringQuotingChecker Modifier and Type Field Description protected StringQuotingChecker
YAMLFactory. _quotingChecker
Helper object used to determine whether property names, String values must be quoted or not.protected StringQuotingChecker
YAMLFactoryBuilder. _quotingChecker
Helper object used to determine whether property names, String values must be quoted or not.protected StringQuotingChecker
YAMLGenerator. _quotingChecker
Methods in com.fasterxml.jackson.dataformat.yaml that return StringQuotingChecker Modifier and Type Method Description StringQuotingChecker
YAMLFactoryBuilder. stringQuotingChecker()
Methods in com.fasterxml.jackson.dataformat.yaml with parameters of type StringQuotingChecker Modifier and Type Method Description 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
Constructors in com.fasterxml.jackson.dataformat.yaml with parameters of type StringQuotingChecker Constructor Description YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int yamlFeatures, StringQuotingChecker quotingChecker, com.fasterxml.jackson.core.ObjectCodec codec, java.io.Writer out, org.yaml.snakeyaml.DumperOptions dumperOptions)
YAMLGenerator(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int yamlFeatures, StringQuotingChecker quotingChecker, com.fasterxml.jackson.core.ObjectCodec codec, java.io.Writer out, org.yaml.snakeyaml.DumperOptions.Version version)
-
Uses of StringQuotingChecker in com.fasterxml.jackson.dataformat.yaml.util
Subclasses of StringQuotingChecker in com.fasterxml.jackson.dataformat.yaml.util Modifier and Type Class Description static class
StringQuotingChecker.Default
DefaultStringQuotingChecker
implementation used unless custom implementation registered.
-