Uses of Class
com.fasterxml.jackson.core.StreamReadFeature
-
Packages that use StreamReadFeature Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) instances.com.fasterxml.jackson.databind 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.com.fasterxml.jackson.databind.cfg 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 StreamReadFeature Modifier and Type Method Description static StreamReadFeatureStreamReadFeature. valueOf(String name)Returns the enum constant of this type with the specified name.static StreamReadFeature[]StreamReadFeature. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.core with parameters of type StreamReadFeature Modifier and Type Method Description BTSFBuilder. configure(StreamReadFeature f, boolean state)BTSFBuilder. disable(StreamReadFeature f)BTSFBuilder. disable(StreamReadFeature first, StreamReadFeature... other)BTSFBuilder. enable(StreamReadFeature f)BTSFBuilder. enable(StreamReadFeature first, StreamReadFeature... other)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. -
Uses of StreamReadFeature in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type StreamReadFeature Modifier and Type Method Description booleanObjectMapper. isEnabled(StreamReadFeature f)booleanObjectReader. isEnabled(StreamReadFeature f)ObjectReaderObjectReader. with(StreamReadFeature feature)Method for constructing a new reader instance that is configured with specified feature enabled.ObjectReaderObjectReader. 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 StreamReadFeature Modifier and Type Method Description BMapperBuilder. configure(StreamReadFeature feature, boolean state)BMapperBuilder. disable(StreamReadFeature... features)BMapperBuilder. enable(StreamReadFeature... features)
-