Package java.lang.reflect

Interface Summary
Member Member is an interface that represents any member of a class (field or method) or a constructor.
 

Class Summary
Array Array holds static helper functions that allow you to create and manipulate arrays by reflection.
Constructor  
Field  
Method  
Modifier Modifier is a helper class with static methods to determine whether an int returned from getModifiers() represents static, public, protected, native, final, etc...
 

Exception Summary
InvocationTargetException InvocationTargetException is sort of a way to "wrap" whatever exception comes up when a method or constructor is called via Reflection.
UndeclaredThrowableException This exception class is thrown by a Proxy instance if the invoke method of that instance's InvocationHandler attempts to throw an exception that not declared by the throws clauses of all of the interface methods that the proxy instance is implementing.