- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for rejectTypeVariables (0.38 sec)
-
android/guava/src/com/google/common/reflect/MutableTypeToInstanceMap.java
return trustedGet(TypeToken.of(type)); } @Override @CheckForNull public <T extends @NonNull B> T getInstance(TypeToken<T> type) { return trustedGet(type.rejectTypeVariables()); } @Override @CanIgnoreReturnValue @CheckForNull public <T extends B> T putInstance(Class<@NonNull T> type, @ParametricNullness T value) { return trustedPut(TypeToken.of(type), value); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 14 17:55:55 UTC 2024 - 5.8K bytes - Viewed (0) -
guava/src/com/google/common/reflect/MutableTypeToInstanceMap.java
return trustedGet(TypeToken.of(type)); } @Override @CheckForNull public <T extends @NonNull B> T getInstance(TypeToken<T> type) { return trustedGet(type.rejectTypeVariables()); } @Override @CanIgnoreReturnValue @CheckForNull public <T extends B> T putInstance(Class<@NonNull T> type, @ParametricNullness T value) { return trustedPut(TypeToken.of(type), value); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 14 17:55:55 UTC 2024 - 5.8K bytes - Viewed (0) -
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 21:13:09 UTC 2024 - 89.1K bytes - Viewed (0) -
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 Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 21:13:09 UTC 2024 - 89.1K bytes - Viewed (0)