Methods Summary |
---|
public java.util.Collection | getFields()Returns the fields that are directly declared by this class or
interface. Includes enum constants.
|
public java.util.Collection | getFormalTypeParameters()Returns the formal type parameters of this class or interface.
|
public java.util.Collection | getMethods()Returns the methods that are directly declared by this class or
interface. Includes annotation type elements. Excludes
implicitly declared methods of an interface, such as
toString, that correspond to the methods of
java.lang.Object.
|
public java.util.Collection | getNestedTypes()Returns the declarations of the nested classes and interfaces
that are directly declared by this class or interface.
|
public com.sun.mirror.declaration.PackageDeclaration | getPackage()Returns the package within which this type is declared.
|
public java.lang.String | getQualifiedName()Returns the fully qualified name of this class or interface
declaration. More precisely, it returns the canonical
name.
The name of a generic type does not include any reference
to its formal type parameters.
For example, the the fully qualified name of the interface declaration
{@code java.util.Set} is "java.util.Set".
|
public java.util.Collection | getSuperinterfaces()Returns the interface types directly implemented by this class
or extended by this interface.
|