Interface MemberUtils


public interface MemberUtils
Java Reflection Member Utilities class
Since:
2.7.6
  • Method Summary

    Static Methods
    Modifier and Type
    Method
    Description
    static boolean
    isPrivate(Member member)
    check the specified member is private or not ?
    static boolean
    isPublic(Member member)
    check the specified member is public or not ?
    static boolean
    isStatic(Member member)
    check the specified member is static or not ?
  • Method Details

    • isStatic

      static boolean isStatic(Member member)
      check the specified member is static or not ?
      Parameters:
      member - Member instance, e.g, Constructor, Method or Field
      Returns:
      Iff member is static one, return true, or false
    • isPrivate

      static boolean isPrivate(Member member)
      check the specified member is private or not ?
      Parameters:
      member - Member instance, e.g, Constructor, Method or Field
      Returns:
      Iff member is private one, return true, or false
    • isPublic

      static boolean isPublic(Member member)
      check the specified member is public or not ?
      Parameters:
      member - Member instance, e.g, Constructor, Method or Field
      Returns:
      Iff member is public one, return true, or false