Uses of Class
com.fasterxml.jackson.dataformat.yaml.YAMLFactory
Packages that use YAMLFactory
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 YAMLFactory in com.fasterxml.jackson.dataformat.yaml
Methods in com.fasterxml.jackson.dataformat.yaml that return YAMLFactoryModifier and TypeMethodDescriptionYAMLFactoryBuilder.build()
final YAMLFactory
YAMLFactory.configure
(YAMLGenerator.Feature f, boolean state) Method for enabling or disabling specified generator feature (checkYAMLGenerator.Feature
for list of features)final YAMLFactory
YAMLFactory.configure
(YAMLParser.Feature f, boolean state) Method for enabling or disabling specified parser feature (checkYAMLParser.Feature
for list of features)YAMLFactory.copy()
YAMLFactory.disable
(YAMLGenerator.Feature f) Method for disabling specified generator feature (checkYAMLGenerator.Feature
for list of features)YAMLFactory.disable
(YAMLParser.Feature f) Method for disabling specified parser features (checkYAMLParser.Feature
for list of features)YAMLFactory.enable
(YAMLGenerator.Feature f) Method for enabling specified generator features (checkYAMLGenerator.Feature
for list of features)YAMLFactory.enable
(YAMLParser.Feature f) Method for enabling specified parser feature (checkYAMLParser.Feature
for list of features)final YAMLFactory
YAMLMapper.getFactory()
Overridden with more specific type, since factory we have is always of typeYAMLFactory
Methods in com.fasterxml.jackson.dataformat.yaml with parameters of type YAMLFactoryModifier and TypeMethodDescriptionstatic YAMLMapper.Builder
YAMLMapper.builder
(YAMLFactory streamFactory) Constructors in com.fasterxml.jackson.dataformat.yaml with parameters of type YAMLFactoryModifierConstructorDescriptionYAMLFactory
(YAMLFactory src, com.fasterxml.jackson.core.ObjectCodec oc)