- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getActualTypeArguments (0.36 sec)
-
src/main/java/org/codelibs/core/beans/ParameterizedClassDesc.java
* </p> * * @return an array of {@link ParameterizedClassDesc} representing the type arguments * @see ParameterizedType#getActualTypeArguments() */ ParameterizedClassDesc[] getArguments();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.7K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeCapture.java
final Type capture() { Type superclass = getClass().getGenericSuperclass(); checkArgument(superclass instanceof ParameterizedType, "%s isn't parameterized", superclass); return ((ParameterizedType) superclass).getActualTypeArguments()[0]; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.1K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeVisitor.java
* * {@snippet : * new TypeVisitor() { * protected void visitParameterizedType(ParameterizedType t) { * visit(t.getOwnerType()); * visit(t.getActualTypeArguments()); * } * protected void visitGenericArrayType(GenericArrayType t) { * visit(t.getGenericComponentType()); * } * protected void visitTypeVariable(TypeVariable<?> t) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 3.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeResolverTest.java
} private static <T> Type aWildcardType() { ParameterizedType parameterizedType = (ParameterizedType) new TypeCapture<List<? extends T>>() {}.capture(); return parameterizedType.getActualTypeArguments()[0]; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 9.8K bytes - Viewed (0)