- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getGenericParameterTypes (2.5 sec)
-
src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java
final Map<TypeVariable<?>, Type> map) { assertArgumentNotNull("constructor", constructor); assertArgumentNotNull("map", map); return createParameterizedClassDesc(constructor.getGenericParameterTypes()[index], map); } /** * Creates and returns a {@link ParameterizedClassDesc} that represents the type of the method argument. * * @param method
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
*/ public static Class<?> getElementTypeOfCollectionFromParameterType(final Method method, final int position) { assertArgumentNotNull("method", method); final Type[] parameterTypes = method.getGenericParameterTypes(); return GenericsUtil.getRawClass(GenericsUtil.getElementTypeOfCollection(parameterTypes[position])); } /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0)