Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for newParameterizedType (0.06 sec)

  1. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public void testGetSupertype_withTypeVariable() {
        ParameterizedType expectedType =
            Types.newParameterizedType(
                Iterable.class,
                Types.newParameterizedType(List.class, ListIterable.class.getTypeParameters()[0]));
        assertEquals(
            expectedType, TypeToken.of(ListIterable.class).getSupertype(Iterable.class).getType());
      }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 89K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/Types.java

       * {@code ownerType}.
       */
      static ParameterizedType newParameterizedTypeWithOwner(
          @Nullable Type ownerType, Class<?> rawType, Type... arguments) {
        if (ownerType == null) {
          return newParameterizedType(rawType, arguments);
        }
        // ParameterizedTypeImpl constructor already checks, but we want to throw NPE before IAE
        checkNotNull(arguments);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 31 19:34:24 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/Types.java

       * {@code ownerType}.
       */
      static ParameterizedType newParameterizedTypeWithOwner(
          @Nullable Type ownerType, Class<?> rawType, Type... arguments) {
        if (ownerType == null) {
          return newParameterizedType(rawType, arguments);
        }
        // ParameterizedTypeImpl constructor already checks, but we want to throw NPE before IAE
        checkNotNull(arguments);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 31 19:34:24 UTC 2025
    - 24.3K bytes
    - Viewed (0)
Back to top