Package | Description |
---|---|
com.fasterxml.jackson.databind |
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper class, as well
as convenience methods included in
JsonParser |
Modifier and Type | Field and Description |
---|---|
protected ObjectWriter.Prefetch |
ObjectWriter._prefetch
We may pre-fetch serializer if
#_rootType
is known, and if so, reuse it afterwards. |
static ObjectWriter.Prefetch |
ObjectWriter.Prefetch.empty |
Modifier and Type | Method and Description |
---|---|
protected ObjectWriter.Prefetch |
ObjectWriter._prefetchRootSerializer(SerializationConfig config,
JavaType valueType)
Method called to locate (root) serializer ahead of time, if permitted
by configuration.
|
static ObjectWriter.Prefetch |
ObjectWriter.Prefetch.construct(JavaType type,
JsonSerializer<Object> ser) |
static ObjectWriter.Prefetch |
ObjectWriter.Prefetch.construct(JavaType type,
TypeSerializer typeSer) |
Modifier and Type | Method and Description |
---|---|
protected ObjectWriter |
ObjectWriter._new(ObjectWriter.GeneratorSettings genSettings,
ObjectWriter.Prefetch prefetch)
Overridable factory method called by various "withXxx()" methods.
|
Constructor and 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) |
Copyright © 2014-2015 FasterXML. All Rights Reserved.