Uses of Class
com.fasterxml.jackson.dataformat.yaml.util.StringQuotingChecker
Packages that use StringQuotingChecker
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
).Helper classes for YAML backend.
-
Uses of StringQuotingChecker in com.fasterxml.jackson.dataformat.yaml
Fields in com.fasterxml.jackson.dataformat.yaml declared as StringQuotingCheckerModifier and TypeFieldDescriptionprotected final 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 final StringQuotingChecker
YAMLGenerator._quotingChecker
Methods in com.fasterxml.jackson.dataformat.yaml that return StringQuotingCheckerMethods in com.fasterxml.jackson.dataformat.yaml with parameters of type StringQuotingCheckerModifier and TypeMethodDescriptionYAMLFactoryBuilder.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 StringQuotingCheckerModifierConstructorDescriptionYAMLGenerator
(com.fasterxml.jackson.core.io.IOContext ctxt, int jsonFeatures, int yamlFeatures, StringQuotingChecker quotingChecker, com.fasterxml.jackson.core.ObjectCodec codec, 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, 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.utilModifier and TypeClassDescriptionstatic class
DefaultStringQuotingChecker
implementation used unless custom implementation registered.