Concrete class for converting and formatting a date/time in a locale-sensitive manner.
More...
|
| | SimpleDateFormat (const LogString &pattern) |
| | A time converter and formatter using pattern and the default std::locale. More...
|
| |
| | SimpleDateFormat (const LogString &pattern, const std::locale *locale) |
| | A time converter and formatter using pattern and locale. More...
|
| |
| | ~SimpleDateFormat () |
| |
| void | format (LogString &toAppendTo, log4cxx_time_t tm, helpers::Pool &p) const override |
| |
| void | setTimeZone (const TimeZonePtr &zone) override |
| | Set time zone. More...
|
| |
| void | format (LogString &toAppendTo, log4cxx_time_t tm) const |
| |
| virtual void | format (LogString &toAppendTo, log4cxx_time_t tm, log4cxx::helpers::Pool &p) const=0 |
| |
| virtual | ~DateFormat () |
| | Destructor. More...
|
| |
| void | format (LogString &toAppendTo, log4cxx_time_t tm) const |
| |
| void | numberFormat (LogString &toAppendTo, int n) const |
| | Format an integer consistent with the format method. More...
|
| |
| virtual void | numberFormat (LogString &toAppendTo, int n, log4cxx::helpers::Pool &p) const |
| |
| virtual | ~Object () |
| |
| virtual const helpers::Class & | getClass () const =0 |
| |
| virtual bool | instanceof (const Class &clazz) const =0 |
| |
| virtual const void * | cast (const Class &clazz) const =0 |
| |
Concrete class for converting and formatting a date/time in a locale-sensitive manner.
| Specifier | Date/time component |
| G | era |
| y | year |
| M | month number |
| MMM | abbreviated month name |
| MMMM | full month name |
| w | week in year |
| W | week in month |
| D | day in year |
| d | day in month |
| EEE | abbreviated day name |
| EEEE | full day name |
| a | AM or PM |
| H | hour 0 - 23 |
| k | hour 1 - 24 |
| K | hour 0 - 11 |
| h | hour 1 - 12 |
| m | minute |
| s | second |
| S | millisecond |
| z | time zone identifier |
| Z | RFC822 time zone |