接口 MemberUtils


  • public interface MemberUtils
    Java Reflection Member Utilities class
    从以下版本开始:
    2.7.6
    • 方法概要

      静态方法 
      修饰符和类型 方法 说明
      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 ?
    • 方法详细资料

      • isStatic

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

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

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