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

Packages that use HierarchicType
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 HierarchicType in org.codehaus.jackson.map.type
 

Fields in org.codehaus.jackson.map.type declared as HierarchicType
protected  HierarchicType HierarchicType._subType
           
protected  HierarchicType HierarchicType._superType
           
 

Methods in org.codehaus.jackson.map.type that return HierarchicType
protected static HierarchicType TypeFactory._findSuperClassChain(Type currentType, Class<?> target)
           
protected static HierarchicType TypeFactory._findSuperInterfaceChain(Type currentType, Class<?> target)
           
protected static HierarchicType TypeFactory._findSuperTypeChain(Class<?> subtype, Class<?> supertype)
          Helper method used to find inheritance (implements, extends) path between given types, if one exists (caller generally checks before calling this method).
 HierarchicType HierarchicType.getSubType()
           
 HierarchicType HierarchicType.getSuperType()
           
 

Methods in org.codehaus.jackson.map.type with parameters of type HierarchicType
protected  JavaType TypeFactory._resolveVariableViaSubTypes(HierarchicType leafType, String variableName, TypeBindings bindings)
           
 void HierarchicType.setSubType(HierarchicType sub)
           
 void HierarchicType.setSuperType(HierarchicType sup)