Class java.lang.Class

Changed Methods
Class<?>  getClasses() Change in return type from Class[] to Class<?>.
 
Constructor<T>  getConstructor( Class<?>) Change in signature from void to Class<?>.
 
Constructor<?>  getConstructors() Change in return type from Constructor[] to Constructor<?>.
 
Class<?>  getDeclaredClasses() Change in return type from Class[] to Class<?>.
 
Constructor<T>  getDeclaredConstructor( Class<?>) Change in signature from void to Class<?>.
 
Constructor<?>  getDeclaredConstructors() Change in return type from Constructor[] to Constructor<?>.
 
Method  getDeclaredMethod( String, Class<?> ) Change in signature from (String, ) to (String, Class<?>).
 
Class<?>  getInterfaces() Change in return type from Class[] to Class<?>.
 
Method  getMethod( String, Class<?> ) Change in signature from (String, ) to (String, Class<?>).
 
 
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.