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

    Modifier and Type
    Method
    Description
    invoke(@Nullable Object... args)
    Invokes method on an object with a given set of arguments.
  • Method Details

    • invoke

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