Uses of Class
com.fasterxml.jackson.jr.type.TypeBindings
-
Packages that use TypeBindings Package Description com.fasterxml.jackson.jr.type -
-
Uses of TypeBindings in com.fasterxml.jackson.jr.type
Fields in com.fasterxml.jackson.jr.type declared as TypeBindings Modifier and Type Field Description protected TypeBindings
ResolvedType. _bindings
Methods in com.fasterxml.jackson.jr.type that return TypeBindings Modifier and Type Method Description static TypeBindings
TypeBindings. create(java.lang.Class<?> erasedType, ResolvedType[] types)
static TypeBindings
TypeBindings. create(java.lang.Class<?> erasedType, java.util.List<ResolvedType> typeList)
static TypeBindings
TypeBindings. emptyBindings()
TypeBindings
ResolvedType. typeBindings()
TypeBindings
TypeBindings. withUnboundVariable(java.lang.String name)
Method for creating an instance that has same bindings as this object, plus an indicator for additional type variable that may be unbound within this context; this is needed to resolve recursive self-references.Methods in com.fasterxml.jackson.jr.type with parameters of type TypeBindings Modifier and Type Method Description ResolvedType
TypeResolver. resolve(TypeBindings typeBindings, java.lang.reflect.Type jdkType)
Factory method for resolving specified JavaType
, givenTypeBindings
needed to resolve any type variables.Constructors in com.fasterxml.jackson.jr.type with parameters of type TypeBindings Constructor Description RecursiveType(java.lang.Class<?> erased, TypeBindings bindings)
ResolvedType(java.lang.Class<?> cls, ResolvedType sup, TypeBindings bindings, ResolvedType[] ifaces)
ResolvedType(java.lang.Class<?> cls, TypeBindings bindings)
ResolvedType(java.lang.Class<?> cls, TypeBindings bindings, ResolvedType elemType)
ResolvedType(java.lang.Class<?> cls, TypeBindings bindings, ResolvedType[] ifaces)
-