Uses of Class
com.fasterxml.jackson.core.type.ResolvedType
-
Packages that use ResolvedType Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactory
used for constructing JSON parser (JsonParser
) and generator (JsonGenerator
) instances.com.fasterxml.jackson.core.type Contains classes needed for type introspection, mostly used by data binding functionality. -
-
Uses of ResolvedType in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core with parameters of type ResolvedType Modifier and Type Method Description abstract <T> T
ObjectCodec. readValue(JsonParser p, ResolvedType valueType)
Method to deserialize JSON content into a POJO, type specified with fully resolved type object (so it can be a generic type, including containers likeCollection
andMap
).abstract <T> Iterator<T>
ObjectCodec. readValues(JsonParser p, ResolvedType valueType)
Method for reading sequence of Objects from parser stream, all with same specified value type. -
Uses of ResolvedType in com.fasterxml.jackson.core.type
Methods in com.fasterxml.jackson.core.type that return ResolvedType Modifier and Type Method Description abstract ResolvedType
ResolvedType. containedType(int index)
Method for accessing definitions of contained ("child") types.abstract ResolvedType
ResolvedType. getContentType()
Method for accessing content type of this type, if type has such a thing: simple types do not, structured types do (like arrays, Collections and Maps)abstract ResolvedType
ResolvedType. getKeyType()
Method for accessing key type for this type, assuming type has such a concept (only Map types do)abstract ResolvedType
ResolvedType. getReferencedType()
Method for accessing type of value that instances of this type references, if any.
-