Uses of Enum Class
com.fasterxml.jackson.core.StreamWriteFeature
Packages that use StreamWriteFeature
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 StreamWriteFeature in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return StreamWriteFeatureModifier and TypeMethodDescriptionstatic StreamWriteFeatureReturns the enum constant of this class with the specified name.static StreamWriteFeature[]StreamWriteFeature.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 StreamWriteFeatureModifier and TypeMethodDescriptionTSFBuilder.configure(StreamWriteFeature f, boolean state) TSFBuilder.disable(StreamWriteFeature f) TSFBuilder.disable(StreamWriteFeature first, StreamWriteFeature... other) TSFBuilder.enable(StreamWriteFeature f) TSFBuilder.enable(StreamWriteFeature first, StreamWriteFeature... other) final booleanJsonFactory.isEnabled(StreamWriteFeature f) Check whether specified stream write feature is enabled.booleanJsonGenerator.isEnabled(StreamWriteFeature f) Method for checking whether given feature is enabled.abstract booleanTokenStreamFactory.isEnabled(StreamWriteFeature f) -
Uses of StreamWriteFeature in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type StreamWriteFeatureModifier and TypeMethodDescriptionbooleanObjectMapper.isEnabled(StreamWriteFeature f) booleanObjectWriter.isEnabled(StreamWriteFeature f) ObjectWriter.with(StreamWriteFeature feature) ObjectWriter.without(StreamWriteFeature feature) -
Uses of StreamWriteFeature in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg with parameters of type StreamWriteFeatureModifier and TypeMethodDescriptionMapperBuilder.configure(StreamWriteFeature feature, boolean state) MapperBuilder.disable(StreamWriteFeature... features) MapperBuilder.enable(StreamWriteFeature... features)