Oracle® Globalization Development Kit Java API Reference
10g Release 1(10.1)

B10971-01

oracle.i18n.text
Class OraDateFormatSymbols

java.lang.Object
  |
  +--oracle.i18n.text.OraDateFormatSymbols
All Implemented Interfaces:
Cloneable, Serializable

public final class OraDateFormatSymbols
extends Object
implements Serializable, Cloneable

OraDateFormatSymbols is a class to maintain 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
OraDateFormatSymbols()
          Constructs an OraDateFormatSymbols object for the default locale.
OraDateFormatSymbols(Locale locale)
          Constructs an OraDateFormatSymbols object for the given locale.
OraDateFormatSymbols(oracle.i18n.util.OraLocaleInfo localeInfo)
          Constructs an OraDateFormatSymbols object for the given OraLocaleInfo.

 

Method Summary
 Object clone()
          Overrids cloneable.
 boolean equals(Object obj)
          Overrides equal.
 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.
 int hashCode()
          Overrides hashCode.
 void setAmPmStrings(String[] amPmStrings)
          Sets the meridian indicators to the given indicators for this object.
 void setEras(String[] eras)
          Sets the eras to the given eras for this object.
 void setMonths(String[] months)
          Sets the month names to the given month names for this object.
 void setShortMonths(String[] shortMonths)
          Sets the abbreviated month names to the given abbreviated month names for this object.
 void setShortWeekdays(String[] shortWeekdays)
          Sets the abbreviated names of day of the week to the given names for this object.
 void setWeekdays(String[] weekdays)
          Sets the names of day of the week to the given names for this object.

 

Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait

 

Constructor Detail

OraDateFormatSymbols

public OraDateFormatSymbols()
Constructs an OraDateFormatSymbols object for the default locale.

OraDateFormatSymbols

public OraDateFormatSymbols(Locale locale)
Constructs an OraDateFormatSymbols object for the given locale.

OraDateFormatSymbols

public OraDateFormatSymbols(oracle.i18n.util.OraLocaleInfo localeInfo)
Constructs an OraDateFormatSymbols object for the given OraLocaleInfo.
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.

getMonths

public String[] getMonths()
Returns the month names for the object. Months start from 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 from 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 from 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 from 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 from 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 from 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 from 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 from 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.

clone

public Object clone()
Overrids cloneable.
Overrides:
clone in class Object

equals

public boolean equals(Object obj)
Overrides equal.
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides hashCode.
Overrides:
hashCode in class Object

Oracle® Globalization Development Kit Java API Reference
10g Release 1(10.1)

B10971-01

Copyright © 2003 Oracle Corporation. All Rights Reserved.