Class java.lang.Class (1.0)


public final class Class extends Object implements Serializable {
  // No Constructor
  // Class Methods
    public static Class forName(String className) throws ClassNotFoundException;
  // Public Instance Methods
    public ClassLoader getClassLoader( );
    public Class[ ] getClasses( );
    public Class getComponentType( );
    public Constructor getConstructor(Class[ ] parameterTypes) throws NoSuchMethodException, SecurityException;
    public Constructor[ ] getConstructors( ) throws SecurityException;
    public Class[ ] getDeclaredClasses( ) throws SecurityException;
    public Constructor getDeclaredConstructor(Class[ ] parameterTypes) throws NoSuchMethodException, SecurityException;
    public Constructor[ ] getDeclaredConstructors( ) throws SecurityException;
    public Field getDeclaredField(String name) throws NoSuchFieldException, SecurityException;
    public Field[ ] getDeclaredFields( ) throws SecurityException;
    public Method getDeclaredMethod(String name, Class[ ] parameterTypes) throws NoSuchMethodException, SecurityException;
    public Method[ ] getDeclaredMethods( ) throws SecurityException;
    public Class getDeclaringClass( );
    public Field getField(String name) throws NoSuchFieldException, SecurityException;
    public Field[ ] getFields( ) throws SecurityException;
    public Class[ ] getInterfaces( );
    public Method getMethod(String name, Class[ ] parameterTypes) throws NoSuchMethodException, SecurityException;
    public Method[ ] getMethods( ) throws SecurityException;
    public int getModifiers( );
    public String getName( );
    public String getResourceAsName(String name);
    public InputStream getResourceAsStream(String name);
    public Object[ ] getSigners( );
    public Class getSuperclass( );
    public boolean isArray( );
    public boolean isAssignableFrom(Class cls);
    public boolean isInstance(Object obj);
    public boolean isInterface( );
    public boolean isPrimitive( );
    public Object newInstance( ) throws InstantiationException, IllegalAccessException;
    public String toString( );  // Overrides Object.toString( )
}