Class java.text.DateFormatSymbols
All Packages Class Hierarchy This Package Previous Next Index
Class java.text.DateFormatSymbols
Object
|
+----java.text.DateFormatSymbols
- public class DateFormatSymbols
- extends Object
- implements Serializable, Cloneable
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 clonable. 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.
- Version:
- 1.20 01/12/98
- Author:
- Chen-Lieh Huang
- See Also:
- DateFormat, SimpleDateFormat, SimpleTimeZone
-
java.text.DateFormatSymbols()
- Construct a DateFormatSymbols object by loading format data from
resources for the default locale.
-
java.text.DateFormatSymbols(Locale)
- Construct a DateFormatSymbols object by loading format data from
resources for the given locale.
-
clone()
- Overrides Cloneable
-
equals(Object)
- Override equals
-
getAmPmStrings()
- Gets ampm strings.
-
getEras()
- Gets era strings.
-
getLocalPatternChars()
- Gets localized date-time pattern characters.
-
getMonths()
- Gets month strings.
-
getShortMonths()
- Gets short month strings.
-
getShortWeekdays()
- Gets short weekday strings.
-
getWeekdays()
- Gets weekday strings.
-
getZoneStrings()
- Gets timezone strings.
-
hashCode()
- Override hashCode.
-
setAmPmStrings(String[])
- Sets ampm strings.
-
setEras(String[])
- Sets era strings.
-
setLocalPatternChars(String)
- Sets localized date-time pattern characters.
-
setMonths(String[])
- Sets month strings.
-
setShortMonths(String[])
- Sets short month strings.
-
setShortWeekdays(String[])
- Sets short weekday strings.
-
setWeekdays(String[])
- Sets weekday strings.
-
setZoneStrings(String[][])
- Sets timezone strings.
DateFormatSymbols
public DateFormatSymbols()
- Construct a DateFormatSymbols object by loading format data from
resources for the default locale.
- Throws: MissingResourceException
- if the resources for the default locale cannot be
found or cannot be loaded.
DateFormatSymbols
public DateFormatSymbols(Locale locale)
- Construct a DateFormatSymbols object by loading format data from
resources for the given locale.
- Throws: MissingResourceException
- if the resources for the specified locale cannot be
found or cannot be loaded.
clone
public java.lang.Object clone()
- Overrides Cloneable
- Overrides:
- clone in class Object
equals
public boolean equals(Object obj)
- Override equals
- Overrides:
- equals in class Object
getAmPmStrings
public java.lang.String[] getAmPmStrings()
- Gets ampm strings. For example: "AM" and "PM".
- Returns:
- the weekday strings.
getEras
public java.lang.String[] getEras()
- Gets era strings. For example: "AD" and "BC".
- Returns:
- the era strings.
getLocalPatternChars
public java.lang.String getLocalPatternChars()
- Gets localized date-time pattern characters. For example: 'u', 't', etc.
- Returns:
- the localized date-time pattern characters.
getMonths
public java.lang.String[] getMonths()
- Gets month strings. For example: "January", "February", etc.
- Returns:
- the month strings.
getShortMonths
public java.lang.String[] getShortMonths()
- Gets short month strings. For example: "Jan", "Feb", etc.
- Returns:
- the short month strings.
getShortWeekdays
public java.lang.String[] getShortWeekdays()
- Gets short weekday strings. For example: "Sun", "Mon", etc.
- Returns:
- the short weekday strings.
getWeekdays
public java.lang.String[] getWeekdays()
- Gets weekday strings. For example: "Sunday", "Monday", etc.
- Returns:
- the weekday strings.
getZoneStrings
public java.lang.String[][] getZoneStrings()
- Gets timezone strings.
- Returns:
- the timezone strings.
hashCode
public int hashCode()
- Override hashCode.
Generates a hash code for the DateFormatSymbols object.
- Overrides:
- hashCode in class Object
setAmPmStrings
public void setAmPmStrings(String[] newAmpms)
- Sets ampm strings. For example: "AM" and "PM".
- Parameters:
- newAmpms - the new ampm strings.
setEras
public void setEras(String[] newEras)
- Sets era strings. For example: "AD" and "BC".
- Parameters:
- newEras - the new era strings.
setLocalPatternChars
public void setLocalPatternChars(String newLocalPatternChars)
- Sets localized date-time pattern characters. For example: 'u', 't', etc.
- Parameters:
- newLocalPatternChars - the new localized date-time
pattern characters.
setMonths
public void setMonths(String[] newMonths)
- Sets month strings. For example: "January", "February", etc.
- Parameters:
- newMonths - the new month strings.
setShortMonths
public void setShortMonths(String[] newShortMonths)
- Sets short month strings. For example: "Jan", "Feb", etc.
- Parameters:
- newShortMonths - the new short month strings.
setShortWeekdays
public void setShortWeekdays(String[] newShortWeekdays)
- Sets short weekday strings. For example: "Sun", "Mon", etc.
- Parameters:
- newShortWeekdays - the new short weekday strings.
setWeekdays
public void setWeekdays(String[] newWeekdays)
- Sets weekday strings. For example: "Sunday", "Monday", etc.
- Parameters:
- newWeekdays - the new weekday strings.
setZoneStrings
public void setZoneStrings(String[][] newZoneStrings)
- Sets timezone strings.
- Parameters:
- newZoneStrings - the new timezone strings.
All Packages Class Hierarchy This Package Previous Next Index