Uses of Enum
com.fasterxml.jackson.dataformat.yaml.YAMLParser.Feature
Packages that use YAMLParser.Feature
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 YAMLParser.Feature in com.fasterxml.jackson.dataformat.yaml
Methods in com.fasterxml.jackson.dataformat.yaml that return YAMLParser.FeatureModifier and TypeMethodDescriptionstatic YAMLParser.Feature
Returns the enum constant of this type with the specified name.static YAMLParser.Feature[]
YAMLParser.Feature.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.dataformat.yaml that return types with arguments of type YAMLParser.FeatureMethods in com.fasterxml.jackson.dataformat.yaml with parameters of type YAMLParser.FeatureModifier and TypeMethodDescriptionfinal YAMLFactory
YAMLFactory.configure
(YAMLParser.Feature f, boolean state) Method for enabling or disabling specified parser feature (checkYAMLParser.Feature
for list of features)YAMLFactoryBuilder.configure
(YAMLParser.Feature f, boolean state) YAMLMapper.Builder.configure
(YAMLParser.Feature f, boolean state) YAMLMapper.configure
(YAMLParser.Feature f, boolean state) com.fasterxml.jackson.core.JsonParser
YAMLParser.configure
(YAMLParser.Feature f, boolean state) Method for enabling or disabling specified CSV feature (checkYAMLParser.Feature
for list of features)YAMLFactory.disable
(YAMLParser.Feature f) Method for disabling specified parser features (checkYAMLParser.Feature
for list of features)YAMLFactoryBuilder.disable
(YAMLParser.Feature f) YAMLFactoryBuilder.disable
(YAMLParser.Feature first, YAMLParser.Feature... other) YAMLMapper.Builder.disable
(YAMLParser.Feature... features) YAMLMapper.disable
(YAMLParser.Feature f) com.fasterxml.jackson.core.JsonParser
YAMLParser.disable
(YAMLParser.Feature f) Method for disabling specified CSV feature (checkYAMLParser.Feature
for list of features)YAMLFactory.enable
(YAMLParser.Feature f) Method for enabling specified parser feature (checkYAMLParser.Feature
for list of features)YAMLFactoryBuilder.enable
(YAMLParser.Feature f) YAMLFactoryBuilder.enable
(YAMLParser.Feature first, YAMLParser.Feature... other) YAMLMapper.Builder.enable
(YAMLParser.Feature... features) YAMLMapper.enable
(YAMLParser.Feature f) com.fasterxml.jackson.core.JsonParser
YAMLParser.enable
(YAMLParser.Feature f) Method for enabling specified CSV feature (checkYAMLParser.Feature
for list of features)final boolean
YAMLFactory.isEnabled
(YAMLParser.Feature f) Checked whether specified parser feature is enabled.boolean
YAMLParser.isEnabled
(YAMLParser.Feature f) Method for checking whether specified CSVYAMLParser.Feature
is enabled.