Java Reflection - Java Class.isMemberClass()








Syntax

Class.isMemberClass() has the following syntax.

public boolean isMemberClass()

Example

In the following code shows how to use Class.isMemberClass() method.

/*from  ww  w  .ja  va  2  s.co  m*/
public class Main {

   public static void main(String[] args) {

     Main c = new Main();
     Class cls = c.getClass();

     // returns true if and only if this class is a local class
     boolean retval = cls.isLocalClass();
     System.out.println(retval);
   }
}

The code above generates the following result.