Lines Matching defs:SimpleDateFormat

62  * <code>SimpleDateFormat</code> is a concrete class for formatting and
67 * <code>SimpleDateFormat</code> allows you to start by choosing
241 * <code>SimpleDateFormat</code> must interpret the abbreviated year
243 * within 80 years before and 20 years after the time the <code>SimpleDateFormat</code>
245 * <code>SimpleDateFormat</code> instance created on Jan 1, 1997, the string
338 * SimpleDateFormat} or {@linkplain #applyPattern(String) applying a
341 * <code>SimpleDateFormat</code> also supports <em>localized date and time
344 * <code>SimpleDateFormat</code> does not deal with the localization of text
409 public class SimpleDateFormat extends DateFormat {
445 * @see SimpleDateFormat#checkNegativeNumberExpression
518 * <code>SimpleDateFormat</code>. The value may be null if this object
519 * has been created by an older <code>SimpleDateFormat</code> and
528 * Indicates whether this <code>SimpleDateFormat</code> should use
537 * Constructs a <code>SimpleDateFormat</code> using the default pattern and
543 public SimpleDateFormat() {
548 * Constructs a <code>SimpleDateFormat</code> using the given pattern and
558 public SimpleDateFormat(String pattern)
564 * Constructs a <code>SimpleDateFormat</code> using the given pattern and
575 public SimpleDateFormat(String pattern, Locale locale)
589 * Constructs a <code>SimpleDateFormat</code> using the given pattern and
597 public SimpleDateFormat(String pattern, DateFormatSymbols formatSymbols)
612 SimpleDateFormat(int timeStyle, int dateStyle, Locale loc) {
2244 * Creates a copy of this <code>SimpleDateFormat</code>. This also
2247 * @return a clone of this <code>SimpleDateFormat</code>
2250 SimpleDateFormat other = (SimpleDateFormat) super.clone();
2256 * Returns the hash code value for this <code>SimpleDateFormat</code> object.
2258 * @return the hash code value for this <code>SimpleDateFormat</code> object.
2267 * Compares the given object with this <code>SimpleDateFormat</code> for
2271 * <code>SimpleDateFormat</code>
2276 SimpleDateFormat that = (SimpleDateFormat) obj;