Uses of Enum Class
tools.jackson.dataformat.yaml.YAMLReadFeature
Packages that use YAMLReadFeature
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 YAMLReadFeature in tools.jackson.dataformat.yaml
Methods in tools.jackson.dataformat.yaml that return YAMLReadFeatureModifier and TypeMethodDescriptionstatic YAMLReadFeatureReturns the enum constant of this class with the specified name.static YAMLReadFeature[]YAMLReadFeature.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in tools.jackson.dataformat.yaml that return types with arguments of type YAMLReadFeatureMethods in tools.jackson.dataformat.yaml with parameters of type YAMLReadFeatureModifier and TypeMethodDescriptionYAMLFactoryBuilder.configure(YAMLReadFeature f, boolean state) YAMLMapper.Builder.configure(YAMLReadFeature feature, boolean state) YAMLFactoryBuilder.disable(YAMLReadFeature f) YAMLFactoryBuilder.disable(YAMLReadFeature first, YAMLReadFeature... other) YAMLMapper.Builder.disable(YAMLReadFeature... features) YAMLFactoryBuilder.enable(YAMLReadFeature f) YAMLFactoryBuilder.enable(YAMLReadFeature first, YAMLReadFeature... other) YAMLMapper.Builder.enable(YAMLReadFeature... features) booleanYAMLFactory.isEnabled(YAMLReadFeature f) booleanYAMLParser.isEnabled(YAMLReadFeature f) Method for checking whether specifiedYAMLReadFeatureis enabled.