Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for yyMMdd (0.02 sec)

  1. src/test/java/org/codelibs/core/convert/DateConversionUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToPlainPattern() throws Exception {
            assertThat(toPlainPattern("y/M/d"), is("yyMMdd"));
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/convert/TimestampConversionUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToPlainPattern() throws Exception {
            assertThat(toPlainPattern("y/M/d H:m:s"), is("yyMMdd HHmmss"));
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

     * <td>{@literal yyyy'nen'M'gatsu'd'nichi'}</td>
     * </tr>
     * <tr>
     * <td rowspan="4">Plain formats</td>
     * <td>{@link DateFormat#SHORT} format without delimiters</td>
     * <td>{@literal yyMMdd}</td>
     * </tr>
     * <tr>
     * <td>{@link DateFormat#MEDIUM} format without delimiters</td>
     * <td>{@literal yyyyMMdd}</td>
     * </tr>
     * <tr>
     * <td>{@link DateFormat#LONG} format without delimiters</td>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 19.6K bytes
    - Viewed (0)
Back to top