Generated by
JDiff

Class java.lang.Class

Documentation changed from old to new.

Changed Methods
Class[] getClasses() Documentation changed from old to new.
Returns an array containing Class objects representing all the public classes and interfaces that are members of the class represented by this Class object.
Class getComponentType() Documentation changed from old to new.
Returns the Class representing the component type of an array.
Constructor getConstructor(Class[]) Documentation changed from old to new.
Returns a Constructor object that reflects the specified public constructor of the class represented by this Class object.
Constructor[] getConstructors() Documentation changed from old to new.
Returns an array containing Constructor objects reflecting all the public constructors of the class represented by this Class object.
Class[] getDeclaredClasses() Documentation changed from old to new.
Returns an array of Class objects reflecting all the classes and interfaces declared as members of the class represented by this Class object.
Constructor getDeclaredConstructor(Class[]) Documentation changed from old to new.
Returns a Constructor object that reflects the specified constructor of the class or interface represented by this Class object.
Constructor[] getDeclaredConstructors() Documentation changed from old to new.
Returns an array of Constructor objects reflecting all the constructors declared by the class represented by this Class object.
Field getDeclaredField(String) Documentation changed from old to new.
Returns a Field object that reflects the specified declared field of the class or interface represented by this Class object.
Field[] getDeclaredFields() Documentation changed from old to new.
Returns an array of Field objects reflecting all the fields declared by the class or interface represented by this Class object.
Method getDeclaredMethod(String, Class[]) Documentation changed from old to new.
Returns a Method object that reflects the specified declared method of the class or interface represented by this Class object.
Method[] getDeclaredMethods() Documentation changed from old to new.
Returns an array of Method objects reflecting all the methods declared by the class or interface represented by this Class object.
Class getDeclaringClass() Documentation changed from old to new.
If the class or interface represented by this Class object is a member of another class returns the Class object representing the class in which it was declared.
Field getField(String) Documentation changed from old to new.
Returns a Field object that reflects the specified public member field of the class or interface represented by this Class object.
Field[] getFields() Documentation changed from old to new.
Returns an array containing Field objects reflecting all the accessible public fields of the class or interface represented by this Class object.
Method getMethod(String, Class[]) Documentation changed from old to new.
Returns a Method object that reflects the specified public member method of the class or interface represented by this Class object.
Method[] getMethods() Documentation changed from old to new.
Returns an array containing Method objects reflecting all the public member methods of the class or interface represented by this Class object including those declared by the class or interface and and those inherited from superclasses and superinterfaces.
int getModifiers() Documentation changed from old to new.
Returns the Java language modifiers for this class or interface encoded in an integer.
ProtectionDomain getProtectionDomain() Documentation changed from old to new.
Returns the ProtectionDomain of this class.
boolean isAssignableFrom(Class) Documentation changed from old to new.
Determines if the class or interface represented by this Class object is either the same as or is a superclass or superinterface of the class or interface represented by the specified Class parameter.
boolean isInstance(Object) Documentation changed from old to new.
Determines if the specified Object is assignment-compatible with the object represented by this Class.
boolean isPrimitive() Documentation changed from old to new.
Determines if the specified Class object represents a primitive type.
Class forName(String, boolean, ClassLoader) Documentation changed from old to new.
Returns the Class object associated with the class or interface with the given string name using the given class loader.