Uses of Class
com.fasterxml.classmate.util.ClassStack
-
Packages that use ClassStack Package Description com.fasterxml.classmate Package that contains main public interface of ClassMate package.com.fasterxml.classmate.util Various utility classes used by ClassMate. -
-
Uses of ClassStack in com.fasterxml.classmate
Methods in com.fasterxml.classmate with parameters of type ClassStack Modifier and Type Method Description private ResolvedType
TypeResolver. _constructType(ClassStack context, java.lang.Class<?> rawType, TypeBindings typeBindings)
private ResolvedType
TypeResolver. _fromAny(ClassStack context, java.lang.reflect.Type mainType, TypeBindings typeBindings)
private ResolvedType
TypeResolver. _fromArrayType(ClassStack context, java.lang.reflect.GenericArrayType arrayType, TypeBindings typeBindings)
private ResolvedType
TypeResolver. _fromClass(ClassStack context, java.lang.Class<?> rawType, TypeBindings typeBindings)
private ResolvedType
TypeResolver. _fromGenericType(ClassStack context, GenericType<?> generic, TypeBindings typeBindings)
Factory method for resolving given generic type, defined by using sub-class instance ofGenericType
private ResolvedType
TypeResolver. _fromParamType(ClassStack context, java.lang.reflect.ParameterizedType ptype, TypeBindings parentBindings)
private ResolvedType
TypeResolver. _fromVariable(ClassStack context, java.lang.reflect.TypeVariable<?> variable, TypeBindings typeBindings)
private ResolvedType
TypeResolver. _fromWildcard(ClassStack context, java.lang.reflect.WildcardType wildType, TypeBindings typeBindings)
private ResolvedType
TypeResolver. _resolveSuperClass(ClassStack context, java.lang.Class<?> rawType, TypeBindings typeBindings)
NOTE: return type changed in 1.0.1 fromResolvedObjectType
toResolvedType
, since it was found that other types may be returned...private ResolvedType[]
TypeResolver. _resolveSuperInterfaces(ClassStack context, java.lang.Class<?> rawType, TypeBindings typeBindings)
-
Uses of ClassStack in com.fasterxml.classmate.util
Fields in com.fasterxml.classmate.util declared as ClassStack Modifier and Type Field Description protected ClassStack
ClassStack. _parent
Methods in com.fasterxml.classmate.util that return ClassStack Modifier and Type Method Description ClassStack
ClassStack. child(java.lang.Class<?> cls)
ClassStack
ClassStack. find(java.lang.Class<?> cls)
Constructors in com.fasterxml.classmate.util with parameters of type ClassStack Constructor Description ClassStack(ClassStack parent, java.lang.Class<?> curr)
-