Java Time Format getDefaultPropertyPageDateTimeFormat()

Here you can find the source of getDefaultPropertyPageDateTimeFormat()

Description

The default DateFormat to be used in property pages (used by implementations of IPropertySource ).

License

Open Source License

Declaration

public static DateFormat getDefaultPropertyPageDateTimeFormat() 

Method Source Code


//package com.java2s;
// Licensed under the MIT license. See License.txt in the repository root.

import java.text.DateFormat;

public class Main {
    /**/*from   www .  j a  v  a2s .  co  m*/
     * The default {@link DateFormat} to be used in property pages (used by
     * implementations of {@link IPropertySource}).
     */
    public static DateFormat getDefaultPropertyPageDateTimeFormat() {
        return DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG);
    }
}

Related

  1. getCurDateTime(String formatStr)
  2. getCurDateTimeFormat(String Format)
  3. getCurrDatetimeWithDbFormat()
  4. getCurTime(String dateformat)
  5. getDefaultDatetimeFormat()
  6. getEndDate(String time, SimpleDateFormat dateFormat)
  7. getFormat2TimetagStr()
  8. getFormatDate(Date date, boolean ShowTimePart_in)
  9. getFormatDate(String timeString, String format)