Package org.fest.reflect.innerclass


package org.fest.reflect.innerclass

Provides a "fluent" API for accessing static inner classes via the Java Reflection API.

Note: Classes in this package are not intended to be used directly. To use them, you need to use the class org.fest.reflect.core.Reflection.

Here are some examples:

   // import static org.fest.reflect.core.Reflection.*;

   // Gets the inner class 'Master' in the declaring class 'Jedi':
   Class<?> masterClass = staticInnerClass("Master").in(Jedi.class).get();

  • Classes
    Class
    Description
    Understands how to obtain a reference to a static inner class.
    Understands the name of a static inner class.