- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getAnnotatedBounds (0.16 sec)
-
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. That means that we * cannot implement that interface in source code in a way that will compile on both Java 7 and * Java 8. If we include the {@code getAnnotatedBounds()} method then its return type means it
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 23K bytes - Viewed (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.java.net/browse/JDK-8202469
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 23.2K bytes - Viewed (0)