java.text.DateFormatSymbols (JDK 1.1)
This class defines accessor methods for the various pieces of data, such as names of months and days, used by SimpleDateFormat to format and parse dates and times. You do not typically use this class unless you are formatting dates for an unsupported locale or in some highly customized way.
public classDateFormatSymbolsextends Object implements Serializable, Cloneable { //Public ConstructorspublicDateFormatSymbols(); publicDateFormatSymbols(Localelocale); //Public Instance Methodspublic Objectclone(); //Overrides Objectpublic booleanequals(Objectobj); //Overrides Objectpublic String[]getAmPmStrings(); public String[]getEras(); public StringgetLocalPatternChars(); public String[]getMonths(); public String[]getShortMonths(); public String[]getShortWeekdays(); public String[]getWeekdays(); public String[][]getZoneStrings(); public inthashCode(); //Overrides Objectpublic voidsetAmPmStrings(String[]newAmpms); public voidsetEras(String[]newEras); public voidsetLocalPatternChars(StringnewLocalPatternChars); public voidsetMonths(String[]newMonths); public voidsetShortMonths(String[]newShortMonths); public voidsetShortWeekdays(String[]newShortWeekdays); public voidsetWeekdays(String[]newWeekdays); public voidsetZoneStrings(String[][]newZoneStrings); }
Passed To:
SimpleDateFormat(), SimpleDateFormat.setDateFormatSymbols()
Returned By:
SimpleDateFormat.getDateFormatSymbols()