Uses of Class
com.fasterxml.jackson.dataformat.yaml.YAMLFactory
-
Packages that use YAMLFactory 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 YAMLFactory in com.fasterxml.jackson.dataformat.yaml
Methods in com.fasterxml.jackson.dataformat.yaml that return YAMLFactory Modifier and Type Method Description YAMLFactory
YAMLFactoryBuilder. build()
YAMLFactory
YAMLFactory. configure(YAMLGenerator.Feature f, boolean state)
Method for enabling or disabling specified generator feature (checkYAMLGenerator.Feature
for list of features)YAMLFactory
YAMLFactory. configure(YAMLParser.Feature f, boolean state)
Method for enabling or disabling specified parser feature (checkYAMLParser.Feature
for list of features)YAMLFactory
YAMLFactory. copy()
YAMLFactory
YAMLFactory. disable(YAMLGenerator.Feature f)
Method for disabling specified generator feature (checkYAMLGenerator.Feature
for list of features)YAMLFactory
YAMLFactory. disable(YAMLParser.Feature f)
Method for disabling specified parser features (checkYAMLParser.Feature
for list of features)YAMLFactory
YAMLFactory. enable(YAMLGenerator.Feature f)
Method for enabling specified generator features (checkYAMLGenerator.Feature
for list of features)YAMLFactory
YAMLFactory. enable(YAMLParser.Feature f)
Method for enabling specified parser feature (checkYAMLParser.Feature
for list of features)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 YAMLFactory Modifier and Type Method Description static YAMLMapper.Builder
YAMLMapper. builder(YAMLFactory streamFactory)
Constructors in com.fasterxml.jackson.dataformat.yaml with parameters of type YAMLFactory Constructor Description YAMLFactory(YAMLFactory src, com.fasterxml.jackson.core.ObjectCodec oc)
YAMLFactoryBuilder(YAMLFactory base)
YAMLMapper(YAMLFactory f)
-