Home | History | Annotate | Download | only in unicode

Lines Matching defs:DateFormatSymbols

44  * DateFormatSymbols is a public class for encapsulating localizable date-time
45 * formatting data -- including timezone data. DateFormatSymbols is used by
48 * Rather than first creating a DateFormatSymbols to get a date-time formatter
60 * new DateFormatSymbols(aLocale)). This will load the appropriate date-time
63 * DateFormatSymbols objects are clonable. When clients obtain a
64 * DateFormatSymbols object, they can feel free to modify the date-time
70 * DateFormatSymbols are not expected to be subclassed. Data for a calendar is
80 class U_I18N_API DateFormatSymbols : public UObject {
83 * Construct a DateFormatSymbols object by loading format data from
95 DateFormatSymbols(UErrorCode& status);
98 * Construct a DateFormatSymbols object by loading format data from
107 DateFormatSymbols(const Locale& locale,
111 * Construct a DateFormatSymbols object by loading format data from
126 DateFormatSymbols(const char *type, UErrorCode& status);
129 * Construct a DateFormatSymbols object by loading format data from
141 DateFormatSymbols(const Locale& locale,
149 DateFormatSymbols(const DateFormatSymbols&);
155 DateFormatSymbols& operator=(const DateFormatSymbols&);
162 virtual ~DateFormatSymbols();
167 * @param other the DateFormatSymbols object to be compared with.
171 UBool operator==(const DateFormatSymbols& other) const;
176 * @param other the DateFormatSymbols object to be compared with.
180 UBool operator!=(const DateFormatSymbols& other) const { return !operator==(other); }
193 * @param eras Array of era strings (DateFormatSymbols retains ownership.)
210 * @param eraNames Array of era name strings (DateFormatSymbols retains ownership.)
227 * @param narrowEras Array of narrow era strings (DateFormatSymbols retains ownership.)
236 * @return the month strings. (DateFormatSymbols retains ownership.)
254 * @return the short month strings. (DateFormatSymbols retains ownership.)
293 * @return the month strings. (DateFormatSymbols retains ownership.)
312 * @return the weekday strings. (DateFormatSymbols retains ownership.)
329 * @return the short weekday strings. (DateFormatSymbols retains ownership.)
347 * @return the month strings. (DateFormatSymbols retains ownership.)
368 * @return the quarter strings. (DateFormatSymbols retains ownership.)
388 * @return the weekday strings. (DateFormatSymbols retains ownership.)
405 * @return The timezone strings as a 2-d array. (DateFormatSymbols retains ownership.)
670 DateFormatSymbols(); // default constructor not implemented
726 void copyData(const DateFormatSymbols& other);