Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 24 (0.12 sec)

  1. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

            final PropertyDesc propDesc = beanDesc.getPropertyDesc("hhh");
            // propDesc.setValue(myBean, "2000/11/8 11:22:33");
            propDesc.setValue(myBean, "1/2/24, 12:08 PM");
            assertThat(myBean.getHhh(), is(notNullValue()));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testSetCalendarValue() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/StringUtil.java

         *
         * @param buf
         *            追加先の文字列
         * @param i
         *            数値
         */
        public static void appendHex(final StringBuilder buf, final int i) {
            buf.append(Integer.toHexString(i >> 24 & 0xff));
            buf.append(Integer.toHexString(i >> 16 & 0xff));
            buf.append(Integer.toHexString(i >> 8 & 0xff));
            buf.append(Integer.toHexString(i & 0xff));
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
Back to top