|
ICU 67.1
67.1
|
DateFormat is an abstract class for a family of classes that convert dates and times from their internal representations to textual form and back again in a language-independent manner. More...
#include <datefmt.h>
Public Types | |
| enum | EStyle { kNone = -1 , kFull = 0 , kLong = 1 , kMedium = 2 , kShort = 3 , kDateOffset = kShort + 1 , kDateTime = 8 , kDateTimeOffset = kDateTime + 1 , kRelative = (1 << 7) , kFullRelative = (kFull | kRelative) , kLongRelative = kLong | kRelative , kMediumRelative = kMedium | kRelative , kShortRelative = kShort | kRelative , kDefault = kMedium , FULL = kFull , LONG = kLong , MEDIUM = kMedium , SHORT = kShort , DEFAULT = kDefault , DATE_OFFSET = kDateOffset , NONE = kNone , DATE_TIME = kDateTime } |
| Constants for various style patterns. More... | |
| enum | EField { kEraField = UDAT_ERA_FIELD , kYearField = UDAT_YEAR_FIELD , kMonthField = UDAT_MONTH_FIELD , kDateField = UDAT_DATE_FIELD , kHourOfDay1Field = UDAT_HOUR_OF_DAY1_FIELD , kHourOfDay0Field = UDAT_HOUR_OF_DAY0_FIELD , kMinuteField = UDAT_MINUTE_FIELD , kSecondField = UDAT_SECOND_FIELD , kMillisecondField = UDAT_FRACTIONAL_SECOND_FIELD , kDayOfWeekField = UDAT_DAY_OF_WEEK_FIELD , kDayOfYearField = UDAT_DAY_OF_YEAR_FIELD , kDayOfWeekInMonthField = UDAT_DAY_OF_WEEK_IN_MONTH_FIELD , kWeekOfYearField = UDAT_WEEK_OF_YEAR_FIELD , kWeekOfMonthField = UDAT_WEEK_OF_MONTH_FIELD , kAmPmField = UDAT_AM_PM_FIELD , kHour1Field = UDAT_HOUR1_FIELD , kHour0Field = UDAT_HOUR0_FIELD , kTimezoneField = UDAT_TIMEZONE_FIELD , kYearWOYField = UDAT_YEAR_WOY_FIELD , kDOWLocalField = UDAT_DOW_LOCAL_FIELD , kExtendedYearField = UDAT_EXTENDED_YEAR_FIELD , kJulianDayField = UDAT_JULIAN_DAY_FIELD , kMillisecondsInDayField = UDAT_MILLISECONDS_IN_DAY_FIELD , ERA_FIELD = UDAT_ERA_FIELD , YEAR_FIELD = UDAT_YEAR_FIELD , MONTH_FIELD = UDAT_MONTH_FIELD , DATE_FIELD = UDAT_DATE_FIELD , HOUR_OF_DAY1_FIELD = UDAT_HOUR_OF_DAY1_FIELD , HOUR_OF_DAY0_FIELD = UDAT_HOUR_OF_DAY0_FIELD , MINUTE_FIELD = UDAT_MINUTE_FIELD , SECOND_FIELD = UDAT_SECOND_FIELD , MILLISECOND_FIELD = UDAT_FRACTIONAL_SECOND_FIELD , DAY_OF_WEEK_FIELD = UDAT_DAY_OF_WEEK_FIELD , DAY_OF_YEAR_FIELD = UDAT_DAY_OF_YEAR_FIELD , DAY_OF_WEEK_IN_MONTH_FIELD = UDAT_DAY_OF_WEEK_IN_MONTH_FIELD , WEEK_OF_YEAR_FIELD = UDAT_WEEK_OF_YEAR_FIELD , WEEK_OF_MONTH_FIELD = UDAT_WEEK_OF_MONTH_FIELD , AM_PM_FIELD = UDAT_AM_PM_FIELD , HOUR1_FIELD = UDAT_HOUR1_FIELD , HOUR0_FIELD = UDAT_HOUR0_FIELD , TIMEZONE_FIELD = UDAT_TIMEZONE_FIELD } |
| Field selector for FieldPosition for DateFormat fields. More... | |
Public Member Functions | |
| virtual | ~DateFormat () |
| Destructor. More... | |
| virtual DateFormat * | clone () const =0 |
| Clones this object polymorphically. More... | |
| virtual UBool | operator== (const Format &) const |
| Equality operator. More... | |
| virtual UnicodeString & | format (const Formattable &obj, UnicodeString &appendTo, FieldPosition &pos, UErrorCode &status) const |
| Format an object to produce a string. More... | |
| virtual UnicodeString & | format (const Formattable &obj, UnicodeString &appendTo, FieldPositionIterator *posIter, UErrorCode &status) const |
| Format an object to produce a string. More... | |
| virtual UnicodeString & | format (Calendar &cal, UnicodeString &appendTo, FieldPosition &fieldPosition) const =0 |
| Formats a date into a date/time string. More... | |
| virtual UnicodeString & | format (Calendar &cal, UnicodeString &appendTo, FieldPositionIterator *posIter, UErrorCode &status) const |
| Formats a date into a date/time string. More... | |
| UnicodeString & | format (UDate date, UnicodeString &appendTo, FieldPosition &fieldPosition) const |
| Formats a UDate into a date/time string. More... | |
| UnicodeString & | format (UDate date, UnicodeString &appendTo, FieldPositionIterator *posIter, UErrorCode &status) const |
| Formats a UDate into a date/time string. More... | |
| UnicodeString & | format (UDate date, UnicodeString &appendTo) const |
| Formats a UDate into a date/time string. More... | |
| virtual UDate | parse (const UnicodeString &text, UErrorCode &status) const |
| Parse a date/time string. More... | |
| virtual void | parse (const UnicodeString &text, Calendar &cal, ParsePosition &pos) const =0 |
| Parse a date/time string beginning at the given parse position. More... | |
| UDate | parse (const UnicodeString &text, ParsePosition &pos) const |
| Parse a date/time string beginning at the given parse position. More... | |
| virtual void | parseObject (const UnicodeString &source, Formattable &result, ParsePosition &parse_pos) const |
| Parse a string to produce an object. More... | |
| virtual UBool | isLenient (void) const |
| Returns whether both date/time parsing in the encapsulated Calendar object and DateFormat whitespace & numeric processing is lenient. More... | |
| virtual void | setLenient (UBool lenient) |
| Specifies whether date/time parsing is to be lenient. More... | |
| virtual UBool | isCalendarLenient (void) const |
| Returns whether date/time parsing in the encapsulated Calendar object processing is lenient. More... | |
| virtual void | setCalendarLenient (UBool lenient) |
| Specifies whether encapsulated Calendar date/time parsing is to be lenient. More... | |
| virtual const Calendar * | getCalendar (void) const |
| Gets the calendar associated with this date/time formatter. More... | |
| virtual void | adoptCalendar (Calendar *calendarToAdopt) |
| Set the calendar to be used by this date format. More... | |
| virtual void | setCalendar (const Calendar &newCalendar) |
| Set the calendar to be used by this date format. More... | |
| virtual const NumberFormat * | getNumberFormat (void) const |
| Gets the number formatter which this date/time formatter uses to format and parse the numeric portions of the pattern. More... | |
| virtual void | adoptNumberFormat (NumberFormat *formatToAdopt) |
| Allows you to set the number formatter. More... | |
| virtual void | setNumberFormat (const NumberFormat &newNumberFormat) |
| Allows you to set the number formatter. More... | |
| virtual const TimeZone & | getTimeZone (void) const |
| Returns a reference to the TimeZone used by this DateFormat's calendar. More... | |
| virtual void | adoptTimeZone (TimeZone *zoneToAdopt) |
| Sets the time zone for the calendar of this DateFormat object. More... | |
| virtual void | setTimeZone (const TimeZone &zone) |
| Sets the time zone for the calendar of this DateFormat object. More... | |
| virtual void | setContext (UDisplayContext value, UErrorCode &status) |
| Set a particular UDisplayContext value in the formatter, such as UDISPCTX_CAPITALIZATION_FOR_STANDALONE. More... | |
| virtual UDisplayContext | getContext (UDisplayContextType type, UErrorCode &status) const |
| Get the formatter's UDisplayContext value for the specified UDisplayContextType, such as UDISPCTX_TYPE_CAPITALIZATION. More... | |
| virtual DateFormat & | setBooleanAttribute (UDateFormatBooleanAttribute attr, UBool newvalue, UErrorCode &status) |
| Sets an boolean attribute on this DateFormat. More... | |
| virtual UBool | getBooleanAttribute (UDateFormatBooleanAttribute attr, UErrorCode &status) const |
| Returns a boolean from this DateFormat May return U_UNSUPPORTED_ERROR if this instance does not support the specified attribute. More... | |
| UnicodeString & | format (const Formattable &obj, UnicodeString &appendTo, UErrorCode &status) const |
| Formats an object to produce a string. More... | |
| virtual UnicodeString & | format (const Formattable &obj, UnicodeString &appendTo, FieldPosition &pos, UErrorCode &status) const=0 |
| Format an object to produce a string. More... | |
| virtual UnicodeString & | format (const Formattable &obj, UnicodeString &appendTo, FieldPositionIterator *posIter, UErrorCode &status) const |
| Format an object to produce a string. More... | |
Public Member Functions inherited from icu::Format | |
| virtual | ~Format () |
| Destructor. More... | |
| UBool | operator!= (const Format &other) const |
| Return true if the given Format objects are not semantically equal. More... | |
| UnicodeString & | format (const Formattable &obj, UnicodeString &appendTo, UErrorCode &status) const |
| Formats an object to produce a string. More... | |
| void | parseObject (const UnicodeString &source, Formattable &result, UErrorCode &status) const |
| Parses a string to produce an object. More... | |
| Locale | getLocale (ULocDataLocaleType type, UErrorCode &status) const |
| Get the locale for this format object. More... | |
| const char * | getLocaleID (ULocDataLocaleType type, UErrorCode &status) const |
| Get the locale for this format object. More... | |
Public Member Functions inherited from icu::UObject | |
| virtual | ~UObject () |
| Destructor. More... | |
| virtual UClassID | getDynamicClassID () const |
| ICU4C "poor man's RTTI", returns a UClassID for the actual ICU class. More... | |
Static Public Member Functions | |
| static DateFormat * | createInstance (void) |
| Create a default date/time formatter that uses the SHORT style for both the date and the time. More... | |
| static DateFormat * | createTimeInstance (EStyle style=kDefault, const Locale &aLocale=Locale::getDefault()) |
| Creates a time formatter with the given formatting style for the given locale. More... | |
| static DateFormat * | createDateInstance (EStyle style=kDefault, const Locale &aLocale=Locale::getDefault()) |
| Creates a date formatter with the given formatting style for the given const locale. More... | |
| static DateFormat * | createDateTimeInstance (EStyle dateStyle=kDefault, EStyle timeStyle=kDefault, const Locale &aLocale=Locale::getDefault()) |
| Creates a date/time formatter with the given formatting styles for the given locale. More... | |
| static UnicodeString | getBestPattern (const Locale &locale, const UnicodeString &skeleton, UErrorCode &status) |
| Returns the best pattern given a skeleton and locale. More... | |
| static DateFormat * | createInstanceForSkeleton (const UnicodeString &skeleton, UErrorCode &status) |
| Creates a date/time formatter for the given skeleton and default locale. More... | |
| static DateFormat * | createInstanceForSkeleton (const UnicodeString &skeleton, const Locale &locale, UErrorCode &status) |
| Creates a date/time formatter for the given skeleton and locale. More... | |
| static DateFormat * | createInstanceForSkeleton (Calendar *calendarToAdopt, const UnicodeString &skeleton, const Locale &locale, UErrorCode &status) |
| Creates a date/time formatter for the given skeleton and locale. More... | |
| static const Locale * | getAvailableLocales (int32_t &count) |
| Gets the set of locales for which DateFormats are installed. More... | |
Protected Member Functions | |
| DateFormat () | |
| Default constructor. More... | |
| DateFormat (const DateFormat &) | |
| Copy constructor. More... | |
| DateFormat & | operator= (const DateFormat &) |
| Default assignment operator. More... | |
Protected Member Functions inherited from icu::Format | |
| void | setLocaleIDs (const char *valid, const char *actual) |
| Format () | |
| Default constructor for subclass use only. More... | |
| Format (const Format &) | |
| Format & | operator= (const Format &) |
Protected Attributes | |
| Calendar * | fCalendar |
| The calendar that DateFormat uses to produce the time field values needed to implement date/time formatting. More... | |
| NumberFormat * | fNumberFormat |
| The number formatter that DateFormat uses to format numbers in dates and times. More... | |
Friends | |
| class | DateFmtKeyByStyle |
Additional Inherited Members | |
Static Protected Member Functions inherited from icu::Format | |
| static void | syntaxError (const UnicodeString &pattern, int32_t pos, UParseError &parseError) |
| Simple function for initializing a UParseError from a UnicodeString. More... | |
DateFormat is an abstract class for a family of classes that convert dates and times from their internal representations to textual form and back again in a language-independent manner.
Converting from the internal representation (milliseconds since midnight, January 1, 1970) to text is known as "formatting," and converting from text to millis is known as "parsing." We currently define only one concrete subclass of DateFormat: SimpleDateFormat, which can handle pretty much all normal date formatting and parsing actions.
DateFormat helps you to format and parse dates for any locale. Your code can be completely independent of the locale conventions for months, days of the week, or even the calendar format: lunar vs. solar.
To format a date for the current Locale, use one of the static factory methods:
DateFormat* dfmt = DateFormat::createDateInstance();UDate myDate = Calendar::getNow();UnicodeString myString;myString = dfmt->format( myDate, myString );static UDate getNow(void)Returns the current UTC (GMT) time measured in milliseconds since 0:00:00 on 1/1/70 (derived from the...static DateFormat * createDateInstance(EStyle style=kDefault, const Locale &aLocale=Locale::getDefault())Creates a date formatter with the given formatting style for the given const locale.
If you are formatting multiple numbers, it is more efficient to get the format and use it multiple times so that the system doesn't have to fetch the information about the local language and country conventions multiple times.
DateFormat* df = DateFormat::createDateInstance();UnicodeString myString;UDate myDateArr[] = { 0.0, 100000000.0, 2000000000.0 }; // test valuesfor (int32_t i = 0; i < 3; ++i) {myString.remove();cout << df->format( myDateArr[i], myString ) << endl;}
To get specific fields of a date, you can use UFieldPosition to get specific fields.
DateFormat* dfmt = DateFormat::createDateInstance();FieldPosition pos(DateFormat::YEAR_FIELD);UnicodeString myString;myString = dfmt->format( myDate, myString );cout << myString << endl;cout << pos.getBeginIndex() << "," << pos. getEndIndex() << endl;
To format a date for a different Locale, specify it in the call to createDateInstance().
DateFormat* df =DateFormat::createDateInstance( DateFormat::SHORT, Locale::getFrance());
You can use a DateFormat to parse also.
UErrorCode status = U_ZERO_ERROR;UDate myDate = df->parse(myString, status);
Use createDateInstance() to produce the normal date format for that country. There are other static factory methods available. Use createTimeInstance() to produce the normal time format for that country. Use createDateTimeInstance() to produce a DateFormat that formats both date and time. You can pass in different options to these factory methods to control the length of the result; from SHORT to MEDIUM to LONG to FULL. The exact result depends on the locale, but generally:
You can also set the time zone on the format if you wish. If you want even more control over the format or parsing, (or want to give your users more control), you can try casting the DateFormat you get from the factory methods to a SimpleDateFormat. This will work for the majority of countries; just remember to chck getDynamicClassID() before carrying out the cast.
You can also use forms of the parse and format methods with ParsePosition and FieldPosition to allow you to
User subclasses are not supported. While clients may write subclasses, such code will not necessarily work and will not be guaranteed to work stably from release to release.
Field selector for FieldPosition for DateFormat fields.
Constants for various style patterns.
These reflect the order of items in the DateTimePatterns resource. There are 4 time patterns, 4 date patterns, the default date-time pattern, and 4 date-time patterns. Each block of 4 values in the resource occurs in the order full, long, medium, short.
| Enumerator | |
|---|---|
| FULL | These constants are provided for backwards compatibility only. Please use the C++ style constants defined above. |
|
virtual |
Destructor.
|
protected |
Default constructor.
Creates a DateFormat with no Calendar or NumberFormat associated with it. This constructor depends on the subclasses to fill in the calendar and numberFormat fields.
|
protected |
Copy constructor.
|
virtual |
Set the calendar to be used by this date format.
Initially, the default calendar for the specified or default locale is used. The caller should not delete the Calendar object after it is adopted by this call. Adopting a new calendar will change to the default symbols.
| calendarToAdopt | Calendar object to be adopted. |
Reimplemented in icu::SimpleDateFormat.
|
virtual |
Allows you to set the number formatter.
The caller should not delete the NumberFormat object after it is adopted by this call.
| formatToAdopt | NumberFormat object to be adopted. |
Reimplemented in icu::SimpleDateFormat.
|
virtual |
Sets the time zone for the calendar of this DateFormat object.
The caller no longer owns the TimeZone object and should not delete it after this call.
| zoneToAdopt | the TimeZone to be adopted. |
|
pure virtual |
Clones this object polymorphically.
The caller owns the result and should delete it when done.
Implements icu::Format.
Implemented in icu::SimpleDateFormat.
|
static |
Creates a date formatter with the given formatting style for the given const locale.
| style | The given formatting style. For example, SHORT for "M/d/yy" in the US locale. As currently implemented, relative date formatting only affects a limited range of calendar days before or after the current date, based on the CLDR <field type="day">/<relative> data: For example, in English, "Yesterday", "Today", and "Tomorrow". Outside of this range, dates are formatted using the corresponding non-relative style. |
| aLocale | The given locale. |
|
static |
Creates a date/time formatter with the given formatting styles for the given locale.
| dateStyle | The given formatting style for the date portion of the result. For example, SHORT for "M/d/yy" in the US locale. As currently implemented, relative date formatting only affects a limited range of calendar days before or after the current date, based on the CLDR <field type="day">/<relative> data: For example, in English, "Yesterday", "Today", and "Tomorrow". Outside of this range, dates are formatted using the corresponding non-relative style. |
| timeStyle | The given formatting style for the time portion of the result. For example, SHORT for "h:mm a" in the US locale. Relative time styles are not currently supported. |
| aLocale | The given locale. |
|
static |
Create a default date/time formatter that uses the SHORT style for both the date and the time.
|
static |
Creates a date/time formatter for the given skeleton and locale.
| calendarToAdopt | the calendar returned DateFormat is to use. |
| skeleton | The skeleton e.g "yMMMMd." Fields in the skeleton can be in any order, and this method uses the locale to map the skeleton to a pattern that includes locale specific separators with the fields in the appropriate order for that locale. |
| locale | The given locale. |
| status | Any error returned here. |
|
static |
Creates a date/time formatter for the given skeleton and locale.
| skeleton | The skeleton e.g "yMMMMd." Fields in the skeleton can be in any order, and this method uses the locale to map the skeleton to a pattern that includes locale specific separators with the fields in the appropriate order for that locale. |
| locale | The given locale. |
| status | Any error returned here. |
|
static |
Creates a date/time formatter for the given skeleton and default locale.
| skeleton | The skeleton e.g "yMMMMd." Fields in the skeleton can be in any order, and this method uses the locale to map the skeleton to a pattern that includes locale specific separators with the fields in the appropriate order for that locale. |
| status | Any error returned here. |
|
static |
Creates a time formatter with the given formatting style for the given locale.
| style | The given formatting style. For example, SHORT for "h:mm a" in the US locale. Relative time styles are not currently supported. |
| aLocale | The given locale. |
|
pure virtual |
Formats a date into a date/time string.
This is an abstract method which concrete subclasses must implement.
On input, the FieldPosition parameter may have its "field" member filled with an enum value specifying a field. On output, the FieldPosition will be filled in with the text offsets for that field.
For example, given a time text "1996.07.10 AD at 15:08:56 PDT", if the given fieldPosition.field is UDAT_YEAR_FIELD, the offsets fieldPosition.beginIndex and statfieldPositionus.getEndIndex will be set to 0 and 4, respectively.
Notice that if the same time field appears more than once in a pattern, the status will be set for the first occurence of that time field. For instance, formatting a UDate to the time string "1 PM PDT (Pacific Daylight Time)" using the pattern "h a z (zzzz)" and the alignment field DateFormat::TIMEZONE_FIELD, the offsets fieldPosition.beginIndex and fieldPosition.getEndIndex will be set to 5 and 8, respectively, for the first occurence of the timezone pattern character 'z'.
| cal | Calendar set to the date and time to be formatted into a date/time string. When the calendar type is different from the internal calendar held by this DateFormat instance, the date and the time zone will be inherited from the input calendar, but other calendar field values will be calculated by the internal calendar. |
| appendTo | Output parameter to receive result. Result is appended to existing contents. |
| fieldPosition | On input: an alignment field, if desired (see examples above) On output: the offsets of the alignment field (see examples above) |
Implemented in icu::SimpleDateFormat.
|
virtual |
Formats a date into a date/time string.
Subclasses should implement this method.
| cal | Calendar set to the date and time to be formatted into a date/time string. When the calendar type is different from the internal calendar held by this DateFormat instance, the date and the time zone will be inherited from the input calendar, but other calendar field values will be calculated by the internal calendar. |
| appendTo | Output parameter to receive result. Result is appended to existing contents. |
| posIter | On return, can be used to iterate over positions of fields generated by this format call. Field values are defined in UDateFormatField. Can be NULL. |
| status | error status. |
Reimplemented in icu::SimpleDateFormat.
|
virtual |
Format an object to produce a string.
This method handles Formattable objects with a UDate type. If a the Formattable object type is not a Date, then it returns a failing UErrorCode.
| obj | The object to format. Must be a Date. |
| appendTo | Output parameter to receive result. Result is appended to existing contents. |
| pos | On input: an alignment field, if desired. On output: the offsets of the alignment field. |
| status | Output param filled with success/failure status. |
Implements icu::Format.
| virtual UnicodeString& icu::Format::format |
Format an object to produce a string.
This is a pure virtual method which subclasses must implement. This method allows polymorphic formatting of Formattable objects. If a subclass of Format receives a Formattable object type it doesn't handle (e.g., if a numeric Formattable is passed to a DateFormat object) then it returns a failing UErrorCode.
| obj | The object to format. |
| appendTo | Output parameter to receive result. Result is appended to existing contents. |
| pos | On input: an alignment field, if desired. On output: the offsets of the alignment field. |
| status | Output param filled with success/failure status. |
| virtual UnicodeString& icu::Format::format |
Format an object to produce a string.
Subclasses should override this method. This method allows polymorphic formatting of Formattable objects. If a subclass of Format receives a Formattable object type it doesn't handle (e.g., if a numeric Formattable is passed to a DateFormat object) then it returns a failing UErrorCode.
| obj | The object to format. |
| appendTo | Output parameter to receive result. Result is appended to existing contents. |
| posIter | On return, can be used to iterate over positions of fields generated by this format call. |
| status | Output param filled with success/failure status. |
|
virtual |
Format an object to produce a string.
This method handles Formattable objects with a UDate type. If a the Formattable object type is not a Date, then it returns a failing UErrorCode.
| obj | The object to format. Must be a Date. |
| appendTo | Output parameter to receive result. Result is appended to existing contents. |
| posIter | On return, can be used to iterate over positions of fields generated by this format call. Field values are defined in UDateFormatField. Can be NULL. |
| status | Output param filled with success/failure status. |
Reimplemented from icu::Format.
| UnicodeString& icu::Format::format |
Formats an object to produce a string.
| obj | The object to format. |
| appendTo | Output parameter to receive result. Result is appended to existing contents. |
| status | Output parameter filled in with success or failure status. |
| UnicodeString& icu::DateFormat::format | ( | UDate | date, |
| UnicodeString & | appendTo | ||
| ) | const |
Formats a UDate into a date/time string.
If there is a problem, you won't know, using this method. Use the overloaded format() method which takes a FieldPosition& to detect formatting problems.
| date | The UDate value to be formatted into a string. |
| appendTo | Output parameter to receive result. Result is appended to existing contents. |
| UnicodeString& icu::DateFormat::format | ( | UDate | date, |