Interface ReflectUtil.MethodDispatcher<T>

  • Type Parameters:
    T - Return type of method
    Enclosing class:
    ReflectUtil

    public static interface ReflectUtil.MethodDispatcher<T>
    Can invoke a method on an object of type E with return type T.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T invoke​(java.lang.Object... args)
      Invokes method on an object with a given set of arguments.
    • Method Detail

      • invoke

        T invoke​(java.lang.Object... args)
        Invokes method on an object with a given set of arguments.
        Parameters:
        args - Arguments to method
        Returns:
        Return value of method