Class MethodWrapper<R>

    • Constructor Summary

      Constructors 
      Constructor Description
      MethodWrapper​(java.lang.reflect.Method method)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object object)  
      boolean exists()  
      java.lang.reflect.Method getMethod()  
      static java.lang.String getMethodSignature​(java.lang.reflect.Method method)  
      static java.lang.String getMethodSignature​(java.lang.reflect.Method method, boolean fullClassNames)  
      java.lang.String getName()  
      int hashCode()  
      R invoke​(java.lang.Object object, java.lang.Object... args)  
      R invokeSilent​(java.lang.Object object, java.lang.Object... args)  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MethodWrapper

        public MethodWrapper​(java.lang.reflect.Method method)
    • Method Detail

      • getName

        public java.lang.String getName()
      • invoke

        public R invoke​(java.lang.Object object,
                        java.lang.Object... args)
      • invokeSilent

        public R invokeSilent​(java.lang.Object object,
                              java.lang.Object... args)
      • getMethod

        public java.lang.reflect.Method getMethod()
      • equals

        public boolean equals​(java.lang.Object object)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • getMethodSignature

        public static java.lang.String getMethodSignature​(java.lang.reflect.Method method,
                                                          boolean fullClassNames)
      • getMethodSignature

        public static java.lang.String getMethodSignature​(java.lang.reflect.Method method)