- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getTypeVariableMap (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java
import static org.codelibs.core.lang.GenericsUtil.getActualClass; import static org.codelibs.core.lang.GenericsUtil.getGenericParameters; import static org.codelibs.core.lang.GenericsUtil.getTypeVariableMap; import static org.codelibs.core.misc.AssertionUtil.assertArgumentArrayIndex; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.lang.reflect.Constructor;
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 7.7K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
import static org.codelibs.core.lang.GenericsUtil.getActualClass; import static org.codelibs.core.lang.GenericsUtil.getGenericParameters; import static org.codelibs.core.lang.GenericsUtil.getTypeVariableMap; import static org.codelibs.core.misc.AssertionUtil.assertArgumentArrayIndex; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 25.8K bytes - Click Count (1) -
src/main/java/org/codelibs/core/lang/GenericsUtil.java
* @return a {@link Map} where the keys are the type variables and the values are the type arguments */ public static Map<TypeVariable<?>, Type> getTypeVariableMap(final Class<?> clazz) { assertArgumentNotNull("clazz", clazz); final Map<TypeVariable<?>, Type> map = CollectionsUtil.newLinkedHashMap();Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 23.4K bytes - Click Count (0)