com.fasterxml.classmate.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of classmate Show documentation
Show all versions of classmate Show documentation
Library for introspecting types with full generic information
including resolving of field and method types.
/**
* Package that contains main public interface of ClassMate
* package.
*
* Most commonly resolution starts with {@link com.fasterxml.classmate.TypeResolver},
* using its resolve()
method, which returns a
* {@link com.fasterxml.classmate.ResolvedType} instance.
* These type objects contain all necessary information about type itself;
* but if type information on members (fields, methods, constructors, static
* members) is needed, {@link com.fasterxml.classmate.MemberResolver} can
* resolve types for members: it takes {@link com.fasterxml.classmate.ResolvedType}s.
*/
package com.fasterxml.classmate;