Class MethodHandleImpl

    • Constructor Summary

      Constructors 
      Constructor Description
      MethodHandleImpl​(java.lang.String className, java.lang.String methodDescription, int methodIndex)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      MethodInvocationResult invoke​(java.lang.Object instance, java.lang.Object... arguments)
      Invokes the method for this handle on the instance.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • MethodHandleImpl

        public MethodHandleImpl​(java.lang.String className,
                                java.lang.String methodDescription,
                                int methodIndex)
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • invoke

        public MethodInvocationResult invoke​(java.lang.Object instance,
                                             java.lang.Object... arguments)
        Description copied from interface: MethodHandle
        Invokes the method for this handle on the instance.
        Specified by:
        invoke in interface MethodHandle
        Parameters:
        instance - the instance containing the method to invoke
        arguments - the arguments, if any, to pass to the method. Wrapper types will be unwrapped as necessary to perform the invocation.
        Returns:
        result object encapsulating the actual return value or the checked exception thrown by the method