Uses of Class
tools.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 tools.jackson.databind
Methods in tools.jackson.databind that return SequenceWriterModifier and TypeMethodDescriptionprotected final SequenceWriterObjectWriter._newSequenceWriter(SerializationContextExt ctxt, boolean wrapInArray, 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 newValueSerializerneeds 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(DataOutput target) ObjectWriter.writeValues(File target) Method for creating aSequenceWriterto write a sequence of root values using configuration of thisObjectWriter.ObjectWriter.writeValues(OutputStream target) Method for creating aSequenceWriterto write a sequence of root values using configuration of thisObjectWriter.ObjectWriter.writeValues(Writer target) Method for creating aSequenceWriterto write a sequence of root values using configuration of thisObjectWriter.ObjectWriter.writeValues(Path target) Method for creating aSequenceWriterto write a sequence of root values using configuration of thisObjectWriter.ObjectWriter.writeValues(JsonGenerator g) Method for creating aSequenceWriterto write a sequence of root values using configuration of thisObjectWriter.ObjectWriter.writeValuesAsArray(DataOutput target) ObjectWriter.writeValuesAsArray(File target) Method for creating aSequenceWriterto write an array of root-level values, using configuration of thisObjectWriter.ObjectWriter.writeValuesAsArray(OutputStream target) Method for creating aSequenceWriterto write an array of root-level values, using configuration of thisObjectWriter.ObjectWriter.writeValuesAsArray(Writer target) Method for creating aSequenceWriterto write an array of root-level values, using configuration of thisObjectWriter.ObjectWriter.writeValuesAsArray(Path target) Method for creating aSequenceWriterto write an array of root-level values, using configuration of thisObjectWriter.ObjectWriter.writeValuesAsArray(JsonGenerator g) Method for creating aSequenceWriterto write an array of root-level values, using configuration of thisObjectWriter.