Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for invokeInternal (0.17 sec)

  1. android/guava/src/com/google/common/reflect/Invokable.java

      @CanIgnoreReturnValue
      @CheckForNull
      public final R invoke(@CheckForNull T receiver, @Nullable Object... args)
          throws InvocationTargetException, IllegalAccessException {
        return (R) invokeInternal(receiver, checkNotNull(args));
      }
    
      /** Returns the return type of this {@code Invokable}. */
      // All subclasses are owned by us and we'll make sure to get the R type right.
      @SuppressWarnings("unchecked")
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Dec 14 20:35:03 GMT 2023
    - 18.6K bytes
    - Viewed (0)
Back to top