Interface Member

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int DECLARED
      Designates all declared members of a class or interface (without inherited members).
      static int PUBLIC
      Designates all public members of a class or interface (including inherited members).
    • Field Detail

      • PUBLIC

        static final int PUBLIC
        Designates all public members of a class or interface (including inherited members).
        See Also:
        Constant Field Values
      • DECLARED

        static final int DECLARED
        Designates all declared members of a class or interface (without inherited members).
        See Also:
        Constant Field Values
    • Method Detail

      • getDeclaringClass

        Class<?> getDeclaringClass()
        Returns the class that declares this member.
        Returns:
        the declaring class
      • getModifiers

        int getModifiers()
        Returns the modifiers for this member. The Modifier class should be used to decode the result.
        Returns:
        the modifiers for this member
        See Also:
        Modifier
      • getName

        String getName()
        Returns the name of this member.
        Returns:
        the name of this member
      • isSynthetic

        boolean isSynthetic()
        Indicates whether or not this member is synthetic (artificially introduced by the compiler).
        Returns:
        true if this member is synthetic, false otherwise