Changed Constructors |
SimpleDateFormat(String )
|
Documentation changed from old to new. |
Constructs a SimpleDateFormat using the given pattern and the default date format symbols for the default locale. |
SimpleDateFormat(String, DateFormatSymbols)
|
Documentation changed from old to new. |
Constructs a SimpleDateFormat using the given pattern and date format symbols. |
SimpleDateFormat(String, Locale)
|
Documentation changed from old to new. |
Constructs a SimpleDateFormat using the given pattern and the default date format symbols for the given locale. |
SimpleDateFormat(void )
|
Documentation changed from old to new. |
Constructs a SimpleDateFormat using the default pattern and date format symbols for the default locale. |
Changed Methods |
void applyLocalizedPattern(String )
|
Documentation changed from old to new. |
Applies the given localized pattern string to this date format. |
void applyPattern(String )
|
Documentation changed from old to new. |
Applies the given pattern string to this date format. |
Object clone()
|
Documentation changed from old to new. |
Creates a copy of this SimpleDateFormat . |
boolean equals(Object )
|
Documentation changed from old to new. |
Compares the given object with this SimpleDateFormat for equality. |
Date get2DigitYearStart()
|
Documentation changed from old to new. |
Returns the beginning date of the 100-year period 2-digit years are interpreted as being within. |
DateFormatSymbols getDateFormatSymbols()
|
Documentation changed from old to new. |
Gets a copy of the date and time format symbols of this date format. |
int hashCode()
|
Documentation changed from old to new. |
Returns the hash code value for this SimpleDateFormat object. |
void set2DigitYearStart(Date )
|
Documentation changed from old to new. |
Sets the 100-year period 2-digit years will be interpreted as being in to begin on the date the user specifies. |
void setDateFormatSymbols(DateFormatSymbols )
|
Documentation changed from old to new. |
Sets the date and time format symbols of this date format. |
String toLocalizedPattern()
|
Documentation changed from old to new. |
Returns a localized pattern string describing this date format. |
String toPattern()
|
Documentation changed from old to new. |
Returns a pattern string describing this date format. |
StringBuffer format(Date, StringBuffer, FieldPosition)
|
Documentation changed from old to new. |
Formats the given Date into a date/time string and appends the result to the given StringBuffer . |
Date parse(String, ParsePosition)
|
Documentation changed from old to new. |
Parses text from a string to produce a Date . |