Interface MethodRequest

    • Nested Class Summary

      • Nested classes/interfaces inherited from interface org.refcodes.mixin.InstanceIdAccessor

        org.refcodes.mixin.InstanceIdAccessor.InstanceIdBuilder<B extends org.refcodes.mixin.InstanceIdAccessor.InstanceIdBuilder<B>>, org.refcodes.mixin.InstanceIdAccessor.InstanceIdMutator, org.refcodes.mixin.InstanceIdAccessor.InstanceIdProperty
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object[] getArgumentArray()
      Returns the arguments to be passed to the method which in turn will be invoked on the target object.
      java.lang.Class<?>[] getArgumentTypeArray()
      Returns an array of Class objects that represent the formal parameter types, in declaration order, of the method represented by this Method object.
      java.lang.String getMethodName()
      Returns the name of the method represented by this method object, as a String.
      • Methods inherited from interface org.refcodes.mixin.InstanceIdAccessor

        getInstanceId
    • Method Detail

      • getMethodName

        java.lang.String getMethodName()
        Returns the name of the method represented by this method object, as a String.
        Returns:
        The name of the method represented by this method object is returned
      • getArgumentTypeArray

        java.lang.Class<?>[] getArgumentTypeArray()
        Returns an array of Class objects that represent the formal parameter types, in declaration order, of the method represented by this Method object.
        Returns:
        Description is currently not available!
      • getArgumentArray

        java.lang.Object[] getArgumentArray()
        Returns the arguments to be passed to the method which in turn will be invoked on the target object.
        Returns:
        The Object array being the arguments to be passed to the method of the target.