Uses of Class
com.fasterxml.jackson.core.StreamWriteFeature
-
Packages that use StreamWriteFeature 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 StreamWriteFeature in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return StreamWriteFeature Modifier and Type Method Description static StreamWriteFeatureStreamWriteFeature. valueOf(String name)Returns the enum constant of this type with the specified name.static StreamWriteFeature[]StreamWriteFeature. 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 StreamWriteFeature Modifier and Type Method Description BTSFBuilder. configure(StreamWriteFeature f, boolean state)BTSFBuilder. disable(StreamWriteFeature f)BTSFBuilder. disable(StreamWriteFeature first, StreamWriteFeature... other)BTSFBuilder. enable(StreamWriteFeature f)BTSFBuilder. enable(StreamWriteFeature first, StreamWriteFeature... other)booleanJsonFactory. isEnabled(StreamWriteFeature f)Check whether specified stream write feature is enabled.booleanJsonGenerator. isEnabled(StreamWriteFeature f)Method for checking whether given feature is enabled. -
Uses of StreamWriteFeature in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type StreamWriteFeature Modifier and Type Method Description booleanObjectMapper. isEnabled(StreamWriteFeature f)booleanObjectWriter. isEnabled(StreamWriteFeature f)ObjectWriterObjectWriter. with(StreamWriteFeature feature)ObjectWriterObjectWriter. without(StreamWriteFeature feature) -
Uses of StreamWriteFeature in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg with parameters of type StreamWriteFeature Modifier and Type Method Description BMapperBuilder. configure(StreamWriteFeature feature, boolean state)BMapperBuilder. disable(StreamWriteFeature... features)BMapperBuilder. enable(StreamWriteFeature... features)
-