Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rejectTypeVariables (0.11 sec)

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

        return trustedGet(TypeToken.of(type));
      }
    
      @Override
      public <T extends @NonNull B> @Nullable T getInstance(TypeToken<T> type) {
        return trustedGet(type.rejectTypeVariables());
      }
    
      @Override
      @CanIgnoreReturnValue
      public <T extends B> @Nullable T putInstance(
          Class<@NonNull T> type, @ParametricNullness T value) {
        return trustedPut(TypeToken.of(type), value);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/MutableTypeToInstanceMap.java

        return trustedGet(TypeToken.of(type));
      }
    
      @Override
      public <T extends @NonNull B> @Nullable T getInstance(TypeToken<T> type) {
        return trustedGet(type.rejectTypeVariables());
      }
    
      @Override
      @CanIgnoreReturnValue
      public <T extends B> @Nullable T putInstance(
          Class<@NonNull T> type, @ParametricNullness T value) {
        return trustedPut(TypeToken.of(type), value);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      private static void assertHasTypeVariable(Type type) {
        try {
          TypeToken.of(type).rejectTypeVariables();
          fail("Should contain TypeVariable");
        } catch (IllegalArgumentException expected) {
        }
      }
    
      private static void assertNoTypeVariable(Type type) {
        TypeToken.of(type).rejectTypeVariables();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      private static void assertHasTypeVariable(Type type) {
        try {
          TypeToken.of(type).rejectTypeVariables();
          fail("Should contain TypeVariable");
        } catch (IllegalArgumentException expected) {
        }
      }
    
      private static void assertNoTypeVariable(Type type) {
        TypeToken.of(type).rejectTypeVariables();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
Back to top