Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for returnType (0.15 sec)

  1. src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java

        /** メソッド名 */
        protected final String methodName;
    
        /** メソッドの引数型の配列 */
        protected final Class<?>[] parameterTypes;
    
        /** メソッドの戻り値型 */
        protected final Class<?> returnType;
    
        /** パラメータ化された引数型の情報 */
        protected final ParameterizedClassDesc[] parameterizedClassDescs;
    
        /** パラメータ化された戻り値型の情報 */
        protected final ParameterizedClassDesc parameterizedClassDesc;
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/MethodUtil.java

        public static Class<?> getElementTypeOfCollectionFromReturnType(final Method method) {
            assertArgumentNotNull("method", method);
    
            final Type returnType = method.getGenericReturnType();
            return GenericsUtil.getRawClass(GenericsUtil.getElementTypeOfCollection(returnType));
        }
    
        /**
         * メソッドの引数型 (パラメタ化されたマップ) のキー型を返します。
         *
         * @param method
         *            メソッド。{@literal null}であってはいけません
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.8K bytes
    - Viewed (0)
Back to top