- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getAnnotatedBounds (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/reflect/Types.java
* * <p>Java 8 introduced a new method {@code getAnnotatedBounds()} in the {@link TypeVariable} * interface, whose return type {@code AnnotatedType[]} is also new in Java 8. As of 2025, Android * has not added {@link AnnotatedType}. That means that we cannot implement that interface in * source code in a way that will compile on both Java and Android. If we include the {@codeCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Oct 31 19:34:24 GMT 2025 - 24.3K bytes - Click Count (0) -
guava-testlib/src/com/google/common/testing/NullPointerTester.java
if (!(type instanceof TypeVariable)) { return false; } TypeVariable<?> typeVar = (TypeVariable<?>) type; for (AnnotatedType bound : typeVar.getAnnotatedBounds()) { // Until Java 15, the isNullableTypeVariable case here won't help: // https://bugs.openjdk.org/browse/JDK-8202469
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 25.4K bytes - Click Count (0)