Home | History | Annotate | Download | only in text

Lines Matching defs:SimpleDateFormat

53  * <strong>[icu enhancement]</strong> ICU's replacement for {@link java.text.SimpleDateFormat}.&nbsp;Methods, fields, and other functionality specific to ICU are labeled '<strong>[icu]</strong>'.
55 * <p><code>SimpleDateFormat</code> is a concrete class for formatting and
60 * <code>SimpleDateFormat</code> allows you to start by choosing
75 * as pattern letters representing calendar fields. <code>SimpleDateFormat</code> supports
652 * SimpleDateFormat formatter
653 * = new SimpleDateFormat ("yyyy.MM.dd G 'at' hh:mm:ss a zzz");
669 * SimpleDateFormat must interpret the abbreviated year
671 * within 80 years before and 20 years after the time the SimpleDateFormat
673 * SimpleDateFormat instance created on Jan 1, 1997, the string
722 public class SimpleDateFormat extends DateFormat {
969 * Constructs a SimpleDateFormat using the default pattern for the default <code>FORMAT</code>
970 * locale. <b>Note:</b> Not all locales support SimpleDateFormat; for full
976 public SimpleDateFormat() {
981 * Constructs a SimpleDateFormat using the given pattern in the default <code>FORMAT</code>
982 * locale. <b>Note:</b> Not all locales support SimpleDateFormat; for full
986 public SimpleDateFormat(String pattern)
992 * Constructs a SimpleDateFormat using the given pattern and locale.
993 * <b>Note:</b> Not all locales support SimpleDateFormat; for full
996 public SimpleDateFormat(String pattern, Locale loc)
1002 * Constructs a SimpleDateFormat using the given pattern and locale.
1003 * <b>Note:</b> Not all locales support SimpleDateFormat; for full
1006 public SimpleDateFormat(String pattern, ULocale loc)
1012 * Constructs a SimpleDateFormat using the given pattern , override and locale.
1023 public SimpleDateFormat(String pattern, String override, ULocale loc)
1029 * Constructs a SimpleDateFormat using the given pattern and
1033 public SimpleDateFormat(String pattern, DateFormatSymbols formatData)
1044 public SimpleDateFormat(String pattern, DateFormatSymbols formatData, ULocale loc)
1055 SimpleDateFormat(String pattern, DateFormatSymbols formatData, Calendar calendar, ULocale locale,
1061 * The constructor called from all other SimpleDateFormat constructors
1063 private SimpleDateFormat(String pattern, DateFormatSymbols formatData, Calendar calendar,
1076 * Creates an instance of SimpleDateFormat for the given format configuration
1078 * @return A SimpleDateFormat instance
1084 public static SimpleDateFormat getInstance(Calendar.FormatConfiguration formatConfig) {
1089 return new SimpleDateFormat(formatConfig.getPatternString(),
1195 * This method is only used by the default SimpleDateFormat constructor.
3948 SimpleDateFormat other = (SimpleDateFormat) super.clone();
3960 * Generates the hash code for the SimpleDateFormat object
3976 SimpleDateFormat that = (SimpleDateFormat) obj;