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. |
com.fasterxml.jackson.databind.ser |
Contains implementation classes of serialization part of
data binding.
|
com.fasterxml.jackson.databind.ser.impl |
Contains implementation classes of serialization part of
data binding.
|
Modifier and Type | Field and Description |
---|---|
protected ReadOnlyClassToSerializerMap |
SerializerProvider._knownSerializers
For fast lookups, we will have a local non-shared read-only
map that contains serializers previously fetched.
|
Modifier and Type | Method and Description |
---|---|
ReadOnlyClassToSerializerMap |
SerializerCache.getReadOnlyLookupMap()
Method that can be called to get a read-only instance populated from the
most recent version of the shared lookup Map.
|
Modifier and Type | Method and Description |
---|---|
static ReadOnlyClassToSerializerMap |
ReadOnlyClassToSerializerMap.from(HashMap<TypeKey,JsonSerializer<Object>> src)
Factory method for constructing an instance.
|
Copyright © 2014–2015 FasterXML. All rights reserved.