Uses of Class
jodd.introspector.ClassDescriptor

Packages that use ClassDescriptor
jodd.introspector Very fast reflection introspector. 
 

Uses of ClassDescriptor in jodd.introspector
 

Fields in jodd.introspector with type parameters of type ClassDescriptor
protected  Map<ClassLoader,Map<String,ClassDescriptor>> WeakIntrospector.cache
           
protected  Map<Class,ClassDescriptor> AccessibleIntrospector.cache
           
 

Methods in jodd.introspector that return ClassDescriptor
protected  ClassDescriptor WeakIntrospector.describeClass(Class type)
          Describes a class by creating a new instance of ClassDescriptor.
protected  ClassDescriptor SupportedIntrospector.describeClass(Class type)
          Describes a class by creating a new instance of ClassDescriptor that will examine all supported methods and fields.
protected  ClassDescriptor AccessibleIntrospector.describeClass(Class type)
          Describes a class by creating a new instance of ClassDescriptor that examines all accessible methods and fields.
 ClassDescriptor WeakIntrospector.lookup(Class type)
          Returns the ClassDescriptor object for specified class.
 ClassDescriptor Introspector.lookup(Class type)
          Returns the ClassDescriptor object for specified class.
static ClassDescriptor ClassIntrospector.lookup(Class type)
          Returns class descriptor for specified type.
 ClassDescriptor AccessibleIntrospector.lookup(Class type)
          Returns the ClassDescriptor object for specified class.
 ClassDescriptor WeakIntrospector.register(Class type)
          Registers new class type.
 ClassDescriptor Introspector.register(Class type)
          Registers new class type.
static ClassDescriptor ClassIntrospector.register(Class type)
          Registers new type.
 ClassDescriptor AccessibleIntrospector.register(Class type)
          Registers new class type.
 

Methods in jodd.introspector that return types with arguments of type ClassDescriptor
protected  Map<String,ClassDescriptor> WeakIntrospector.getClassDescriptorMap(Class type)
          Returns class descriptor map.