|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.text.DateFormatSymbols
DateFormatSymbols
is a public class for encapsulating
localizable date-time formatting data, such as the names of the
months, the names of the days of the week, and the time zone data.
DateFormat
and SimpleDateFormat
both use
DateFormatSymbols
to encapsulate this information.
Typically you shouldn't use DateFormatSymbols
directly.
Rather, you are encouraged to create a date-time formatter with the
DateFormat
class's factory methods: getTimeInstance
,
getDateInstance
, or getDateTimeInstance
.
These methods automatically create a DateFormatSymbols
for
the formatter so that you don't have to. After the
formatter is created, you may modify its format pattern using the
setPattern
method. For more information about
creating formatters using DateFormat
's factory methods,
see DateFormat
.
If you decide to create a date-time formatter with a specific format pattern for a specific locale, you can do so with:
new SimpleDateFormat(aPattern, new DateFormatSymbols(aLocale)).
DateFormatSymbols
objects are cloneable. When you obtain
a DateFormatSymbols
object, feel free to modify the
date-time formatting data. For instance, you can replace the localized
date-time format pattern characters with the ones that you feel easy
to remember. Or you can change the representative cities
to your favorite ones.
New DateFormatSymbols
subclasses may be added to support
SimpleDateFormat
for date-time formatting for additional locales.
DateFormat
,
SimpleDateFormat
,
SimpleTimeZone
,
Serialized FormField Summary | |
(package private) String[] |
ampms
AM and PM strings. |
private static Hashtable |
cachedLocaleData
Cache to hold the LocaleElements and DateFormatZoneData ResourceBundles of a Locale. |
private static Hashtable |
cachedZoneData
cache to hold time zone localized strings. |
(package private) String[] |
eras
Era strings. |
(package private) String |
localPatternChars
Localized date-time pattern characters. |
(package private) static int |
millisPerHour
Useful constant for defining timezone offsets. |
(package private) String[] |
months
Month strings. |
(package private) static String |
patternChars
Unlocalized date-time pattern characters. |
(package private) static long |
serialVersionUID
|
(package private) String[] |
shortMonths
Short month strings. |
(package private) String[] |
shortWeekdays
Short weekday strings. |
(package private) String[] |
weekdays
Weekday strings. |
(package private) String[][] |
zoneStrings
Localized names of time zones in this locale. |
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 | |
private ResourceBundle[] |
cacheLookup(Locale desiredLocale)
Look up resource data for the desiredLocale in the cache; update the cache if necessary. |
Object |
clone()
Overrides Cloneable |
private void |
copyMembers(DateFormatSymbols src,
DateFormatSymbols dst)
Clones all the data members from the source DateFormatSymbols to the target DateFormatSymbols. |
private String[] |
duplicate(String[] srcArray)
Clones an array of Strings. |
boolean |
equals(Object obj)
Override equals |
private boolean |
equals(String[] current,
String[] other)
Compares the equality of the two arrays of String. |
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. |
(package private) int |
getZoneIndex(String ID)
Package private: used by SimpleDateFormat Gets the index for the given time zone ID to obtain the timezone strings for formatting. |
String[][] |
getZoneStrings()
Gets timezone strings. |
int |
hashCode()
Override hashCode. |
private void |
initializeData(Locale desiredLocale)
|
private String[][] |
loadZoneStrings(Locale desiredLocale,
ResourceBundle rsrc)
Load time zone localized strings. |
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 |
Field Detail |
String[] eras
Calendar.BC
and Calendar.AD
.
String[] months
Calendar.JANUARY
, Calendar.FEBRUARY
, etc.
String[] shortMonths
Calendar.JANUARY
, Calendar.FEBRUARY
, etc.
String[] weekdays
Calendar.SUNDAY
,
Calendar.MONDAY
, etc.
The element weekdays[0]
is ignored.
String[] shortWeekdays
Calendar.SUNDAY
,
Calendar.MONDAY
, etc.
The element shortWeekdays[0]
is ignored.
String[] ampms
Calendar.AM
and
Calendar.PM
.
String[][] zoneStrings
TimeZone
.
Each such row contains (with i
ranging from
0..n-1):
zoneStrings[i][0]
- time zone IDzoneStrings[i][1]
- long name of zone in standard
timezoneStrings[i][2]
- short name of zone in
standard timezoneStrings[i][3]
- long name of zone in daylight
savings timezoneStrings[i][4]
- short name of zone in daylight
savings time
TimeZone
static final String patternChars
String localPatternChars
DateFormat.ERA_FIELD
,
DateFormat.YEAR_FIELD
, etc. Thus, if the string were
"Xz...", then localized patterns would use 'X' for era and 'z' for year.
static final long serialVersionUID
static final int millisPerHour
private static Hashtable cachedLocaleData
private static Hashtable cachedZoneData
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()
clone
in class Object
Cloneable
public int hashCode()
hashCode
in class Object
Object.equals(java.lang.Object)
,
Hashtable
public boolean equals(Object obj)
equals
in class Object
obj
- the reference object with which to compare.
true
if this object is the same as the obj
argument; false
otherwise.Object.hashCode()
,
Hashtable
private ResourceBundle[] cacheLookup(Locale desiredLocale)
private String[][] loadZoneStrings(Locale desiredLocale, ResourceBundle rsrc)
private void initializeData(Locale desiredLocale)
final int getZoneIndex(String ID)
ID
- the given time zone ID.
SimpleTimeZone
private final String[] duplicate(String[] srcArray)
srcArray
- the source array to be cloned.
private final void copyMembers(DateFormatSymbols src, DateFormatSymbols dst)
src
- the source DateFormatSymbols.dst
- the target DateFormatSymbols.private final boolean equals(String[] current, String[] other)
current
- this String array.other
- that String array.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |