Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for superClass (0.48 sec)

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

          return getSupertypeFromUpperBounds(superclass, ((TypeVariable<?>) runtimeType).getBounds());
        }
        if (runtimeType instanceof WildcardType) {
          return getSupertypeFromUpperBounds(superclass, ((WildcardType) runtimeType).getUpperBounds());
        }
        if (superclass.isArray()) {
          return getArraySupertype(superclass);
        }
        @SuppressWarnings("unchecked") // resolved supertype
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * InternalFutures#tryInternalFastPathGetFailure(InternalFutureFailureAccess)}.
       *
       * @since 27.0
       */
      @Override
      /*
       * We should annotate the superclass, InternalFutureFailureAccess, to say that its copy of this
       * method returns @Nullable, too. However, we're not sure if we want to make any changes to that
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
Back to top