Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isHashCodeMethod (0.11 sec)

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

         * {@literal hashCode()}メソッドかどうか返します。
         *
         * @param method
         *            メソッド。{@literal null}であってはいけません
         * @return {@literal hashCode()}メソッドなら{@literal true}
         */
        public static boolean isHashCodeMethod(final Method method) {
            assertArgumentNotNull("method", method);
    
            return method != null && method.getName().equals("hashCode") && method.getReturnType() == int.class
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top