Previous | Next | Trail Map | The Reflection API | Contents

Summary of Classes

The following table summarizes the classes that comprise the Reflection API. Except for Class, each of these classes is in the java.lang.reflect(in the API reference documentation)package. Class is contained in the java.lang(in the API reference documentation)package.

Class Description
Array(in the API reference documentation) Provides static methods to dynamically create and access arrays.
Class(in the API reference documentation) Represents, or reflects, classes and interfaces.
Constructor(in the API reference documentation) Provides information about, and access to, a constructor for a class. Allows you to
instantiate a class dynamically.
Field(in the API reference documentation) Provides information about, and dynamic access to, a field of a class or an interface.
Method(in the API reference documentation) Provides information about, and access to, a single method on a class or interface.
Allows you to invoke the method dynamically.
Modifier(in the API reference documentation) Provides static methods and constants that allow you to get information about the
access modifiers of a class and its members.


Previous | Next | Trail Map | The Reflection API | Contents