Home | History | Annotate | Download | only in text

Lines Matching defs:SimpleDateFormat

28  * {@icuenhanced java.text.SimpleDateFormat}.{@icu _usage_}
30 * <p><code>SimpleDateFormat</code> is a concrete class for formatting and
35 * <code>SimpleDateFormat</code> allows you to start by choosing
90 * <tt><b>*</b></tt> These items are not supported by Java's SimpleDateFormat.<br>
136 * SimpleDateFormat formatter
137 * = new SimpleDateFormat ("yyyy.MM.dd G 'at' hh:mm:ss a zzz");
153 * SimpleDateFormat must interpret the abbreviated year
155 * within 80 years before and 20 years after the time the SimpleDateFormat
157 * SimpleDateFormat instance created on Jan 1, 1997, the string
206 public class SimpleDateFormat extends DateFormat {
210 * Constructs a SimpleDateFormat using the default pattern for the default
211 * locale. <b>Note:</b> Not all locales support SimpleDateFormat; for full
217 public SimpleDateFormat() {
218 super(new java.text.SimpleDateFormat());
222 * Constructs a SimpleDateFormat using the given pattern in the default
223 * locale. <b>Note:</b> Not all locales support SimpleDateFormat; for full
227 public SimpleDateFormat(String pattern)
229 super(new java.text.SimpleDateFormat(pattern));
233 * Constructs a SimpleDateFormat using the given pattern and locale.
234 * <b>Note:</b> Not all locales support SimpleDateFormat; for full
238 public SimpleDateFormat(String pattern, Locale loc)
240 super(new java.text.SimpleDateFormat(pattern, loc));
244 * Constructs a SimpleDateFormat using the given pattern and locale.
245 * <b>Note:</b> Not all locales support SimpleDateFormat; for full
249 public SimpleDateFormat(String pattern, ULocale loc)
255 // * Constructs a SimpleDateFormat using the given pattern , override and locale.
267 // public SimpleDateFormat(String pattern, String override, ULocale loc)
273 * Constructs a SimpleDateFormat using the given pattern and
278 public SimpleDateFormat(String pattern, DateFormatSymbols formatData)
280 super(new java.text.SimpleDateFormat(pattern, formatData.dfs));
291 ((java.text.SimpleDateFormat)dateFormat).set2DigitYearStart(startDate);
302 return ((java.text.SimpleDateFormat)dateFormat).get2DigitYearStart();
359 return ((java.text.SimpleDateFormat)dateFormat).toPattern();
367 return ((java.text.SimpleDateFormat)dateFormat).toLocalizedPattern();
375 ((java.text.SimpleDateFormat)dateFormat).applyPattern(pat);
383 ((java.text.SimpleDateFormat)dateFormat).applyLocalizedPattern(pat);
393 return new DateFormatSymbols(((java.text.SimpleDateFormat)dateFormat).getDateFormatSymbols());
402 ((java.text.SimpleDateFormat)dateFormat).setDateFormatSymbols(newFormatSymbols.dfs);
430 private SimpleDateFormat(java.text.SimpleDateFormat sdf) {
439 return new SimpleDateFormat((java.text.SimpleDateFormat)dateFormat.clone());
444 * Generates the hash code for the SimpleDateFormat object