Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isToStringMethod (0.13 sec)

  1. src/test/java/org/codelibs/core/lang/MethodUtilTest.java

            final Method toStringMethod = ClassUtil.getMethod(getClass(), "toString");
            assertThat(MethodUtil.isToStringMethod(toStringMethod), is(true));
            final Method hashCodeMethod = ClassUtil.getMethod(getClass(), "hashCode");
            assertThat(MethodUtil.isToStringMethod(hashCodeMethod), is(not(true)));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/MethodUtil.java

         * {@literal toString()}メソッドかどうか返します。
         *
         * @param method
         *            メソッド。{@literal null}であってはいけません
         * @return {@literal toString()}メソッドなら{@literal true}
         */
        public static boolean isToStringMethod(final Method method) {
            assertArgumentNotNull("method", method);
    
            return method != null && method.getName().equals("toString") && method.getReturnType() == String.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