Uses of Class
com.fasterxml.jackson.databind.ObjectWriter.Prefetch
-
Packages that use ObjectWriter.Prefetch Package Description 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 ObjectWriter.Prefetch in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as ObjectWriter.Prefetch Modifier and Type Field Description protected ObjectWriter.Prefetch
ObjectWriter. _prefetch
We may pre-fetch serializer if root type is known (has been explicitly declared), and if so, reuse it afterwards.static ObjectWriter.Prefetch
ObjectWriter.Prefetch. empty
Methods in com.fasterxml.jackson.databind that return ObjectWriter.Prefetch Modifier and Type Method Description ObjectWriter.Prefetch
ObjectWriter.Prefetch. forRootType(ObjectWriter parent, JavaType newType)
Methods in com.fasterxml.jackson.databind with parameters of type ObjectWriter.Prefetch Modifier and Type Method Description protected ObjectWriter
ObjectWriter. _new(ObjectWriter.GeneratorSettings genSettings, ObjectWriter.Prefetch prefetch)
Overridable factory method called by various "withXxx()" methods.Constructors in com.fasterxml.jackson.databind with parameters of type ObjectWriter.Prefetch Constructor Description ObjectWriter(ObjectWriter base, SerializationConfig config, ObjectWriter.GeneratorSettings genSettings, ObjectWriter.Prefetch prefetch)
Copy constructor used for building variations.SequenceWriter(DefaultSerializerProvider prov, com.fasterxml.jackson.core.JsonGenerator gen, boolean closeGenerator, ObjectWriter.Prefetch prefetch)
-