Method Summary |
|
public Object | clone() Answers a new DateFormatSymbols with the same symbols as this
DateFormatSymbols. |
public boolean | equals(Object object) Compares the specified object to this DateFormatSymbols and answer if
they are equal. |
public String[] | getAmPmStrings() Answers the array of Strings which represent AM and PM. |
public String[] | getEras() Answers the array of Strings which represent BC and AD. |
public String | getLocalPatternChars() Answers the pattern characters used by SimpleDateFormat to specify date
and time fields. |
public String[] | getMonths() Answers the array of Strings containing the full names of the months. |
public String[] | getShortMonths() Answers the array of Strings containing the abbreviated names of the
months. |
public String[] | getShortWeekdays() Answers the array of Strings containing the abbreviated names of the days
of the week. |
public String[] | getWeekdays() Answers the array of Strings containing the full names of the days of the
week. |
public String[][] | getZoneStrings() Answers the two-dimensional array of Strings containing the names of the
timezones. |
public int | hashCode() Answers an integer hash code for the receiver. |
public void | setAmPmStrings(String[] data) Sets the array of Strings which represent AM and PM. |
public void | setEras(String[] data) Sets the array of Strings which represent BC and AD. |
public void | setLocalPatternChars(String data) Sets the pattern characters used by SimpleDateFormat to specify date and
time fields. |
public void | setMonths(String[] data) Sets the array of Strings containing the full names of the months. |
public void | setShortMonths(String[] data) Sets the array of Strings containing the abbreviated names of the months.
Use the Calendar constants Calendar.JANUARY, etc. |
public void | setShortWeekdays(String[] data) Sets the array of Strings containing the abbreviated names of the days of
the week. |
public void | setWeekdays(String[] data) Sets the array of Strings containing the full names of the days of the
week. |
public void | setZoneStrings(String[][] data) Sets the two-dimensional array of Strings containing the names of the
timezones. |