Uses of Class
org.codehaus.jackson.map.type.TypeBindings

Packages that use TypeBindings
org.codehaus.jackson.map.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations. 
org.codehaus.jackson.map.ser Contains implementation classes of serialization part of data binding. 
org.codehaus.jackson.map.type Package that contains concrete implementations of JavaType, as well as the factory (TypeFactory) for constructing instances from various input data types (like Class, Type) and programmatically (for structured types, arrays, Lists and Maps). 
 

Uses of TypeBindings in org.codehaus.jackson.map.introspect
 

Fields in org.codehaus.jackson.map.introspect declared as TypeBindings
protected  TypeBindings BasicBeanDescription._bindings
          We may need type bindings for the bean type.
 

Methods in org.codehaus.jackson.map.introspect that return TypeBindings
 TypeBindings BasicBeanDescription.bindingsForBeanType()
           
 

Methods in org.codehaus.jackson.map.introspect with parameters of type TypeBindings
 JavaType Annotated.getType(TypeBindings context)
          Full generic type of the annotated element; definition of what exactly this means depends on sub-class.
 

Uses of TypeBindings in org.codehaus.jackson.map.ser
 

Methods in org.codehaus.jackson.map.ser with parameters of type TypeBindings
protected  BeanPropertyWriter BeanSerializerFactory._constructWriter(SerializationConfig config, TypeBindings typeContext, PropertyBuilder pb, boolean staticTyping, String name, AnnotatedMember propertyMember)
          Secondary helper method for constructing BeanPropertyWriter for given member (field or method).
 

Uses of TypeBindings in org.codehaus.jackson.map.type
 

Methods in org.codehaus.jackson.map.type with parameters of type TypeBindings
protected  JavaType TypeFactory._fromArrayType(GenericArrayType type, TypeBindings context)
           
protected  JavaType TypeFactory._fromClass(Class<?> clz, TypeBindings context)
           
protected  JavaType TypeFactory._fromParamType(ParameterizedType type, TypeBindings context)
          This method deals with parameterized types, that is, first class generic classes.
 JavaType TypeFactory._fromType(Type type, TypeBindings context)
          Factory method that can be used if type information is passed as Java typing returned from getGenericXxx methods (usually for a return or argument type).
protected  JavaType TypeFactory._fromVariable(TypeVariable<?> type, TypeBindings context)
           
protected  JavaType TypeFactory._fromWildcard(WildcardType type, TypeBindings context)
           
static JavaType TypeFactory.type(Type type, TypeBindings bindings)