Uses of Class
com.fasterxml.jackson.databind.SequenceWriter
Packages that use SequenceWriter
Package
Description
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 SequenceWriter in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return SequenceWriterModifier and TypeMethodDescriptionprotected SequenceWriterObjectWriter._newSequenceWriter(boolean wrapInArray, com.fasterxml.jackson.core.JsonGenerator gen, boolean managedInput) Overridable factory method called byObjectWriter.writeValues(OutputStream)method (and its various overrides), and initializes it as necessary.protected SequenceWriterSequenceWriter._writeCloseableValue(Object value) protected SequenceWriterSequenceWriter._writeCloseableValue(Object value, JavaType type) SequenceWriter.init(boolean wrapInArray) Internal method called byObjectWriter: should not be called by code outsidejackson-databindclasses.Method for writing given value into output, as part of sequence to write.Method for writing given value into output, as part of sequence to write; further, full type (often generic, likeMapis passed in case a newJsonSerializerneeds to be fetched to handle type If root type was specified forObjectWriter, value must be of compatible type (same or subtype).<C extends Collection<?>>
SequenceWriterSequenceWriter.writeAll(C container) ObjectWriter.writeValues(com.fasterxml.jackson.core.JsonGenerator g) Method for creating aSequenceWriterto write a sequence of root values using configuration of thisObjectWriter.ObjectWriter.writeValues(DataOutput out) ObjectWriter.writeValues(File out) Method for creating aSequenceWriterto write a sequence of root values using configuration of thisObjectWriter.ObjectWriter.writeValues(OutputStream out) Method for creating aSequenceWriterto write a sequence of root values using configuration of thisObjectWriter.ObjectWriter.writeValues(Writer out) Method for creating aSequenceWriterto write a sequence of root values using configuration of thisObjectWriter.ObjectWriter.writeValuesAsArray(com.fasterxml.jackson.core.JsonGenerator gen) Method for creating aSequenceWriterto write an array of root-level values, using configuration of thisObjectWriter.ObjectWriter.writeValuesAsArray(DataOutput out) ObjectWriter.writeValuesAsArray(File out) Method for creating aSequenceWriterto write an array of root-level values, using configuration of thisObjectWriter.ObjectWriter.writeValuesAsArray(OutputStream out) Method for creating aSequenceWriterto write an array of root-level values, using configuration of thisObjectWriter.ObjectWriter.writeValuesAsArray(Writer out) Method for creating aSequenceWriterto write an array of root-level values, using configuration of thisObjectWriter.