| java.lang.Object java.util.ResourceBundle sun.text.resources.DateFormatZoneData
All known Subclasses: sun.text.resources.DateFormatZoneData_en,
DateFormatZoneData | public class DateFormatZoneData extends ResourceBundle (Code) | | Supplement package private date-time formatting zone data for DateFormat.
DateFormatData used in DateFormat will be initialized by loading the data
from LocaleElements and DateFormatZoneData resources. The zone data are
represented with the following form:
{ID, new String[] {ID, long zone string, short zone string, long daylight
string, short daylight string, representative city of zone}}, where ID is
NOT localized, but is used to look up the localized timezone data
internally. Localizers can localize any zone strings except
for the ID of the timezone.
Also, localizer should not touch "localPatternChars" entry.
The DateFormatZoneData bundles of all locales must extend
this base class. This class implements similar to
ListResourceBundle , except that it preserves the order of
the keys that it obtained from getContents and return through
getKeys . As in ListResourceBundle ,
getKeys appends keys from the parent bundle's
getKeys to this bundle's keys unless they duplicate
one of this bundle's keys.
See Also: ListResourceBundle See Also: Format See Also: DateFormatData See Also: LocaleElements See Also: SimpleDateFormat See Also: TimeZone version: 1.29, 10/11/06 author: Chen-Lieh Huang |
getContents | public Object[][] getContents()(Code) | | Overrides ListResourceBundle
|
getKeys | public Enumeration getKeys()(Code) | | Implementation of ResourceBundle.getKeys. Unlike the implementation in
ListResourceBundle , this implementation preserves
the order of keys obtained from getContents .
|
handleGetObject | public Object handleGetObject(String key)(Code) | | Override ResourceBundle. Same semantics.
|
|
|