Uses of Interface
com.fasterxml.jackson.databind.introspect.TypeResolutionContext
-
Packages that use TypeResolutionContext Package Description com.fasterxml.jackson.databind.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. -
-
Uses of TypeResolutionContext in com.fasterxml.jackson.databind.introspect
Classes in com.fasterxml.jackson.databind.introspect that implement TypeResolutionContext Modifier and Type Class Description class
AnnotatedClass
static class
TypeResolutionContext.Basic
Fields in com.fasterxml.jackson.databind.introspect declared as TypeResolutionContext Modifier and Type Field Description private TypeResolutionContext
AnnotatedCreatorCollector. _typeContext
protected TypeResolutionContext
AnnotatedMember. _typeContext
Context object needed for resolving generic type associated with this member (method parameter or return value, or field type).TypeResolutionContext
AnnotatedFieldCollector.FieldBuilder. typeContext
TypeResolutionContext
AnnotatedMethodCollector.MethodBuilder. typeContext
Methods in com.fasterxml.jackson.databind.introspect that return TypeResolutionContext Modifier and Type Method Description TypeResolutionContext
AnnotatedMember. getTypeContext()
Deprecated.Since 2.9Methods in com.fasterxml.jackson.databind.introspect with parameters of type TypeResolutionContext Modifier and Type Method Description private void
AnnotatedMethodCollector. _addMemberMethods(TypeResolutionContext tc, java.lang.Class<?> cls, java.util.Map<MemberKey,AnnotatedMethodCollector.MethodBuilder> methods, java.lang.Class<?> mixInCls)
protected void
AnnotatedMethodCollector. _addMethodMixIns(TypeResolutionContext tc, java.lang.Class<?> targetClass, java.util.Map<MemberKey,AnnotatedMethodCollector.MethodBuilder> methods, java.lang.Class<?> mixInCls)
private java.util.Map<java.lang.String,AnnotatedFieldCollector.FieldBuilder>
AnnotatedFieldCollector. _findFields(TypeResolutionContext tc, JavaType type, java.util.Map<java.lang.String,AnnotatedFieldCollector.FieldBuilder> fields)
(package private) java.util.List<AnnotatedField>
AnnotatedFieldCollector. collect(TypeResolutionContext tc, JavaType type)
(package private) AnnotatedMethodMap
AnnotatedMethodCollector. collect(TypeFactory typeFactory, TypeResolutionContext tc, JavaType mainType, java.util.List<JavaType> superTypes, java.lang.Class<?> primaryMixIn)
static AnnotatedClass.Creators
AnnotatedCreatorCollector. collectCreators(AnnotationIntrospector intr, TypeResolutionContext tc, JavaType type, java.lang.Class<?> primaryMixIn, boolean collectAnnotations)
static java.util.List<AnnotatedField>
AnnotatedFieldCollector. collectFields(AnnotationIntrospector intr, TypeResolutionContext tc, ClassIntrospector.MixInResolver mixins, TypeFactory types, JavaType type, boolean collectAnnotations)
static AnnotatedMethodMap
AnnotatedMethodCollector. collectMethods(AnnotationIntrospector intr, TypeResolutionContext tc, ClassIntrospector.MixInResolver mixins, TypeFactory types, JavaType type, java.util.List<JavaType> superTypes, java.lang.Class<?> primaryMixIn, boolean collectAnnotations)
-