|
Whole document tree
java.text
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Constructor Summary | |
DateFormatSymbols()
Construct a DateFormatSymbols object by loading format data from resources for the default locale. |
|
DateFormatSymbols(Locale locale)
Construct a DateFormatSymbols object by loading format data from resources for the given locale. |
|
| Method Summary | |
Object |
clone()
Overrides Cloneable |
boolean |
equals(Object obj)
Override equals |
String[] |
getAmPmStrings()
Gets ampm strings. |
String[] |
getEras()
Gets era strings. |
String |
getLocalPatternChars()
Gets localized date-time pattern characters. |
String[] |
getMonths()
Gets month strings. |
String[] |
getShortMonths()
Gets short month strings. |
String[] |
getShortWeekdays()
Gets short weekday strings. |
String[] |
getWeekdays()
Gets weekday strings. |
String[][] |
getZoneStrings()
Gets timezone strings. |
int |
hashCode()
Override hashCode. |
void |
setAmPmStrings(String[] newAmpms)
Sets ampm strings. |
void |
setEras(String[] newEras)
Sets era strings. |
void |
setLocalPatternChars(String newLocalPatternChars)
Sets localized date-time pattern characters. |
void |
setMonths(String[] newMonths)
Sets month strings. |
void |
setShortMonths(String[] newShortMonths)
Sets short month strings. |
void |
setShortWeekdays(String[] newShortWeekdays)
Sets short weekday strings. |
void |
setWeekdays(String[] newWeekdays)
Sets weekday strings. |
void |
setZoneStrings(String[][] newZoneStrings)
Sets timezone strings. |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public DateFormatSymbols()
MissingResourceException - if the resources for the default locale cannot be
found or cannot be loaded.public DateFormatSymbols(Locale locale)
MissingResourceException - if the resources for the specified locale cannot be
found or cannot be loaded.| Method Detail |
public String[] getEras()
public void setEras(String[] newEras)
newEras - the new era strings.public String[] getMonths()
public void setMonths(String[] newMonths)
newMonths - the new month strings.public String[] getShortMonths()
public void setShortMonths(String[] newShortMonths)
newShortMonths - the new short month strings.public String[] getWeekdays()
Calendar.SUNDAY,
Calendar.MONDAY, etc. to index the result array.public void setWeekdays(String[] newWeekdays)
newWeekdays - the new weekday strings. The array should
be indexed by Calendar.SUNDAY,
Calendar.MONDAY, etc.public String[] getShortWeekdays()
Calendar.SUNDAY,
Calendar.MONDAY, etc. to index the result array.public void setShortWeekdays(String[] newShortWeekdays)
newShortWeekdays - the new short weekday strings. The array should
be indexed by Calendar.SUNDAY,
Calendar.MONDAY, etc.public String[] getAmPmStrings()
public void setAmPmStrings(String[] newAmpms)
newAmpms - the new ampm strings.public String[][] getZoneStrings()
public void setZoneStrings(String[][] newZoneStrings)
newZoneStrings - the new timezone strings.public String getLocalPatternChars()
public void setLocalPatternChars(String newLocalPatternChars)
newLocalPatternChars - the new localized date-time
pattern characters.public Object clone()
java.lang.ObjectCloneNotSupportedException - if the object's class does not
support the Cloneable interface. Subclasses
that override the clone method can also
throw this exception to indicate that an instance cannot
be cloned.OutOfMemoryError - if there is not enough memory.Cloneablepublic int hashCode()
java.lang.ObjectObject.equals(java.lang.Object),
Hashtablepublic boolean equals(Object obj)
java.lang.Objectobj - the reference object with which to compare.true if this object is the same as the obj
argument; false otherwise.Boolean.hashCode(),
Hashtable
|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.