Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getActualElementClassOfCollection (0.22 sec)

  1. src/main/java/org/codelibs/core/lang/GenericsUtil.java

         *            パラメータ化された{@link Collection}
         * @param map
         *            パラメータ化された型が持つ型変数をキー、型引数を値とする{@link Map}
         * @return パラメータ化された{@link Collection}の実際の要素型
         */
        public static Class<?> getActualElementClassOfCollection(final Type type, final Map<TypeVariable<?>, Type> map) {
            if (!isTypeOf(type, Collection.class)) {
                return null;
            }
            return getActualClass(getGenericParameter(type, 0), map);
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top