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.
|
Modifier and Type | Field and Description |
---|---|
protected StringQuotingChecker |
YAMLFactoryBuilder._quotingChecker
Helper object used to determine whether property names, String values
must be quoted or not.
|
protected StringQuotingChecker |
YAMLGenerator._quotingChecker |
protected StringQuotingChecker |
YAMLFactory._quotingChecker
Helper object used to determine whether property names, String values
must be quoted or not.
|
Modifier and Type | Method and Description |
---|---|
StringQuotingChecker |
YAMLFactoryBuilder.stringQuotingChecker() |
Modifier and Type | Method and Description |
---|---|
YAMLFactoryBuilder |
YAMLFactoryBuilder.stringQuotingChecker(StringQuotingChecker sqc)
Method for specifying either custom
StringQuotingChecker
to use instead of default one, or, that default one (see
StringQuotingChecker.Default.instance() ) is to be used
(when passing null |
Constructor and Description |
---|
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) |
Modifier and Type | Class and Description |
---|---|
static class |
StringQuotingChecker.Default
Default
StringQuotingChecker implementation used unless
custom implementation registered. |
Copyright © 2021 FasterXML. All rights reserved.