Uses of Enum Class
com.fasterxml.jackson.core.StreamReadFeature
Packages that use StreamReadFeature
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser)
and generator
(JsonGenerator)
instances.Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode), as well as
writing Java Objects and trees as JSON.Package that contains most of configuration-related classes;
exception being couple of most-commonly used configuration
things (like Feature enumerations) that are at the
main level (
com.fasterxml.jackson.databind).-
Uses of StreamReadFeature in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return StreamReadFeatureModifier and TypeMethodDescriptionstatic StreamReadFeatureReturns the enum constant of this class with the specified name.static StreamReadFeature[]StreamReadFeature.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.fasterxml.jackson.core with parameters of type StreamReadFeatureModifier and TypeMethodDescriptionTSFBuilder.configure(StreamReadFeature f, boolean state) TSFBuilder.disable(StreamReadFeature f) TSFBuilder.disable(StreamReadFeature first, StreamReadFeature... other) TSFBuilder.enable(StreamReadFeature f) TSFBuilder.enable(StreamReadFeature first, StreamReadFeature... other) final booleanJsonFactory.isEnabled(StreamReadFeature f) Method for checking if the specified stream read feature is enabled.booleanJsonParser.isEnabled(StreamReadFeature f) Method for checking whether specifiedJsonParser.Featureis enabled.abstract booleanTokenStreamFactory.isEnabled(StreamReadFeature f) -
Uses of StreamReadFeature in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type StreamReadFeatureModifier and TypeMethodDescriptionbooleanObjectMapper.isEnabled(StreamReadFeature f) booleanObjectReader.isEnabled(StreamReadFeature f) ObjectReader.with(StreamReadFeature feature) Method for constructing a new reader instance that is configured with specified feature enabled.ObjectReader.without(StreamReadFeature feature) Method for constructing a new reader instance that is configured with specified feature disabled. -
Uses of StreamReadFeature in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg with parameters of type StreamReadFeatureModifier and TypeMethodDescriptionMapperBuilder.configure(StreamReadFeature feature, boolean state) MapperBuilder.disable(StreamReadFeature... features) MapperBuilder.enable(StreamReadFeature... features)