Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toPattern (0.04 sec)

  1. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

         */
        public static String getShortPattern(final Locale locale) {
            assertArgumentNotNull("locale", locale);
            return ((SimpleDateFormat) getDateInstance(SHORT, locale)).toPattern();
        }
    
        /**
         * Returns the pattern string for {@link DateFormat#MEDIUM} style in the default locale.
         *
         * @return the pattern string for {@link DateFormat#MEDIUM} style
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

         */
        public static String getShortPattern(final Locale locale) {
            assertArgumentNotNull("locale", locale);
            return ((SimpleDateFormat) getTimeInstance(SHORT, locale)).toPattern();
        }
    
        /**
         * Returns the pattern string for {@link DateFormat#MEDIUM} style in the default locale.
         *
         * @return the pattern string for {@link DateFormat#MEDIUM} style
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

         */
        public static String getShortPattern(final Locale locale) {
            assertArgumentNotNull("locale", locale);
            return ((SimpleDateFormat) getDateTimeInstance(SHORT, SHORT, locale)).toPattern();
        }
    
        /**
         * Returns the pattern string for {@link DateFormat#MEDIUM} style using the default locale.
         *
         * @return the pattern string for {@link DateFormat#MEDIUM} style
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top