(@Nullable T receiver, Object... args)
| 96 | */ |
| 97 | // All subclasses are owned by us and we'll make sure to get the R type right. |
| 98 | @SuppressWarnings("unchecked") |
| 99 | @CanIgnoreReturnValue |
| 100 | public final R invoke(@Nullable T receiver, Object... args) |
| 101 | throws InvocationTargetException, IllegalAccessException { |
| 102 | return (R) invokeInternal(receiver, checkNotNull(args)); |
| 103 | } |
| 104 | |
| 105 | /** Returns the return type of this {@code Invokable}. */ |
| 106 | // All subclasses are owned by us and we'll make sure to get the R type right. |