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
Subclasses with type arguments of type YAMLParser.Feature in com.fasterxml.jackson.dataformat.yamlModifier and TypeClassDescriptionstatic enumEnumeration that defines all togglable features for YAML parsers.Methods in com.fasterxml.jackson.dataformat.yaml that return YAMLParser.FeatureModifier and TypeMethodDescriptionstatic YAMLParser.FeatureReturns 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 YAMLFactoryYAMLFactory.configure(YAMLParser.Feature f, boolean state) Method for enabling or disabling specified parser feature (checkYAMLParser.Featurefor 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.JsonParserYAMLParser.configure(YAMLParser.Feature f, boolean state) Method for enabling or disabling specified CSV feature (checkYAMLParser.Featurefor list of features)YAMLFactory.disable(YAMLParser.Feature f) Method for disabling specified parser features (checkYAMLParser.Featurefor 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.JsonParserYAMLParser.disable(YAMLParser.Feature f) Method for disabling specified CSV feature (checkYAMLParser.Featurefor list of features)YAMLFactory.enable(YAMLParser.Feature f) Method for enabling specified parser feature (checkYAMLParser.Featurefor 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.JsonParserYAMLParser.enable(YAMLParser.Feature f) Method for enabling specified CSV feature (checkYAMLParser.Featurefor list of features)final booleanYAMLFactory.isEnabled(YAMLParser.Feature f) Checked whether specified parser feature is enabled.booleanYAMLParser.isEnabled(YAMLParser.Feature f) Method for checking whether specified CSVYAMLParser.Featureis enabled.