Return the superclass of this class. Return null if this is an interface. A superclass is represented by either a ClassDoc or a ParametrizedType.
@return the superclass of this class, or null if there is no superclass.
@since 1.5
Return the class type that is a direct supertype of this one. This is the superclass of this type's declaring class, with type arguments substituted in. Return null if this is an interface type.
For example, if this parameterized type is {@code java.util.ArrayList}, the result will be {@code java.util.AbstractList}.
@return the class type that is a direct supertype of this one.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.