Uses of Class
com.fasterxml.jackson.core.exc.StreamWriteException
-
Packages that use StreamWriteException 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.core.exc Package for some ofJsonProcessingExceptionsubtypes contained by streaming API.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. -
-
Uses of StreamWriteException in com.fasterxml.jackson.core
Subclasses of StreamWriteException in com.fasterxml.jackson.core Modifier and Type Class Description classJsonGenerationExceptionException type for exceptions during JSON writing, such as trying to output content in wrong context (non-matching end-array or end-object, for example). -
Uses of StreamWriteException in com.fasterxml.jackson.core.exc
Methods in com.fasterxml.jackson.core.exc that return StreamWriteException Modifier and Type Method Description abstract StreamWriteExceptionStreamWriteException. withGenerator(JsonGenerator g)Fluent method that may be used to assign originatingJsonGenerator, to be accessed usinggetProcessor(). -
Uses of StreamWriteException in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that throw StreamWriteException Modifier and Type Method Description voidObjectMapper. writeValue(JsonGenerator g, Object value)Method that can be used to serialize any Java value as JSON output, using providedJsonGenerator.voidObjectMapper. writeValue(File resultFile, Object value)Method that can be used to serialize any Java value as JSON output, written to File provided.voidObjectMapper. writeValue(OutputStream out, Object value)Method that can be used to serialize any Java value as JSON output, using output stream provided (using encodingJsonEncoding.UTF8).voidObjectMapper. writeValue(Writer w, Object value)Method that can be used to serialize any Java value as JSON output, using Writer provided.voidObjectWriter. writeValue(DataOutput out, Object value)voidObjectWriter. writeValue(File resultFile, Object value)Method that can be used to serialize any Java value as JSON output, written to File provided.voidObjectWriter. writeValue(OutputStream out, Object value)Method that can be used to serialize any Java value as JSON output, using output stream provided (using encodingJsonEncoding.UTF8).voidObjectWriter. writeValue(Writer w, Object value)Method that can be used to serialize any Java value as JSON output, using Writer provided.
-