Package oracle.i18n.text
Class OraDateFormatSymbols
- java.lang.Object
-
- oracle.i18n.text.OraDateFormatSymbols
-
- All Implemented Interfaces:
Serializable,Cloneable
public final class OraDateFormatSymbols extends Object implements Serializable, Cloneable
TheOraDateFormatSymbolsclass is a class that maintains Oracle translations for date/time-related strings such as month names and day-of-the-week names.- See Also:
OraDateFormat,OraSimpleDateFormat, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OraDateFormatSymbols()Deprecated.As of Oracle Database 10g Release 2 (10.2), replaced byOraDateFormatSymbols(Locale)OraDateFormatSymbols(Locale locale)Constructs anOraDateFormatSymbolsobject for the given locale.OraDateFormatSymbols(OraLocaleInfo localeInfo)Constructs anOraDateFormatSymbolsobject for the givenOraLocaleInfoobject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()Overrides theclonemethod.booleanequals(Object obj)Overrides theequalsmethod.String[]getAmPmStrings()Returns the meridian indicators for the object.String[]getEras()Returns the era strings for the object.String[]getMonths()Returns the month names for the object.String[]getShortMonths()Returns the abbreviated month names for the object.String[]getShortWeekdays()Returns the abbreviated names of day-of-the-week for the object.String[]getWeekdays()Returns the names of day-of-the-week for the object.inthashCode()Overrides thehashCodemethod.voidsetAmPmStrings(String[] amPmStrings)Sets the meridian indicators to the given indicators for this object.voidsetEras(String[] eras)Sets the eras to the given eras for this object.voidsetMonths(String[] months)Sets the month names to the given month names for this object.voidsetShortMonths(String[] shortMonths)Sets the abbreviated month names to the given abbreviated month names for this object.voidsetShortWeekdays(String[] shortWeekdays)Sets the abbreviated names of day-of-the-week to the given names for this object.voidsetWeekdays(String[] weekdays)Sets the names of day-of-the-week to the given names for this object.
-
-
-
Constructor Detail
-
OraDateFormatSymbols
public OraDateFormatSymbols()
Deprecated.As of Oracle Database 10g Release 2 (10.2), replaced byOraDateFormatSymbols(Locale)Constructs anOraDateFormatSymbolsobject for the default locale.
-
OraDateFormatSymbols
public OraDateFormatSymbols(Locale locale)
Constructs anOraDateFormatSymbolsobject for the given locale.- Parameters:
locale- the given locale
-
OraDateFormatSymbols
public OraDateFormatSymbols(OraLocaleInfo localeInfo)
Constructs anOraDateFormatSymbolsobject for the givenOraLocaleInfoobject.- Parameters:
localeInfo- the givenOraLocaleInfoobject
-
-
Method Detail
-
getEras
public String[] getEras()
Returns the era strings for the object. For example, it returns {"bc", "ad"} for en_US.- Returns:
- the era strings
-
setEras
public void setEras(String[] eras)
Sets the eras to the given eras for this object.- Parameters:
eras- the given eras.
-
getMonths
public String[] getMonths()
Returns the month names for the object. Months start with January (0) and end with December (11).- Returns:
- the month names
-
setMonths
public void setMonths(String[] months)
Sets the month names to the given month names for this object. Months start with January (0) and end with December (11).- Parameters:
months- the given month names
-
getShortMonths
public String[] getShortMonths()
Returns the abbreviated month names for the object. Months start with January (0) and end with December (11).- Returns:
- the abbreviated month names
-
setShortMonths
public void setShortMonths(String[] shortMonths)
Sets the abbreviated month names to the given abbreviated month names for this object. Months start with January (0) and end with December (11).- Parameters:
shortMonths- the given abbreviated month names
-
getWeekdays
public String[] getWeekdays()
Returns the names of day-of-the-week for the object. Weekdays start with Sunday (0) and end with Saturday (6).- Returns:
- the names of day-of-the-week
-
setWeekdays
public void setWeekdays(String[] weekdays)
Sets the names of day-of-the-week to the given names for this object. Weekdays start with Sunday (0) and end with Saturday (6).- Parameters:
weekdays- the given names of day-of-the-week
-
getShortWeekdays
public String[] getShortWeekdays()
Returns the abbreviated names of day-of-the-week for the object. Weekdays start with Sunday (0) and end with Saturday (6).- Returns:
- the abbreviated names of day-of-the-week
-
setShortWeekdays
public void setShortWeekdays(String[] shortWeekdays)
Sets the abbreviated names of day-of-the-week to the given names for this object. Weekdays start with Sunday (0) and end with Saturday (6)- Parameters:
shortWeekdays- the given abbreviated names of day-of-the-week
-
getAmPmStrings
public String[] getAmPmStrings()
Returns the meridian indicators for the object. For example, it returns {"am", "pm"} for en_US.- Returns:
- the meridian indicators
-
setAmPmStrings
public void setAmPmStrings(String[] amPmStrings)
Sets the meridian indicators to the given indicators for this object.- Parameters:
amPmStrings- the given meridian indicators.
-
equals
public boolean equals(Object obj)
Overrides theequalsmethod.
-
-