public interface DateFormatInfo
DateFormats.setLocalFormatInfo(org.zkoss.text.DateFormatInfo) to provide
the format information for different styling and locales.| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDateFormat(int style,
java.util.Locale locale)
Return the date format of the given style and locale, or null
if the default one shall be used.
|
java.lang.String |
getDateTimeFormat(int dateStyle,
int timeStyle,
java.util.Locale locale)
Return the date/time format of the given style and locale, or null
if the default one shall be used.
|
java.lang.String |
getTimeFormat(int style,
java.util.Locale locale)
Return the time format of the given style and locale, or null
if the default one shall be used.
|
java.lang.String getDateFormat(int style,
java.util.Locale locale)
style - the giving formatting style (never null). For example,
DateFormat.SHORT for "M/d/yy" in the US locale.locale - the locale (never null).java.lang.String getTimeFormat(int style,
java.util.Locale locale)
style - the giving formatting style (never null). For example,
DateFormat.SHORT for "h:mm a" in the US locale.locale - the locale (never null).java.lang.String getDateTimeFormat(int dateStyle,
int timeStyle,
java.util.Locale locale)
dateStyle - the giving formatting style (never null). For example,
DateFormat.SHORT for "M/d/yy" in the US locale.timeStyle - the giving formatting style (never null). For example,
DateFormat.SHORT for "h:mm a" in the US locale.locale - the locale (never null).Copyright © 2005-2011 Potix Corporation. All Rights Reserved.