|
Apache Log4cxx
Version 1.8.0
|
DateFormat is an abstract class for date/time formatting patterned after java.text.DateFormat. More...
#include <dateformat.h>
Public Member Functions | |
| virtual | ~DateFormat () |
| Destructor. | |
| 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 void | setTimeZone (const TimeZonePtr &zone) |
| Sets the time zone. | |
| void | numberFormat (LogString &toAppendTo, int n) const |
| Format an integer consistent with the format method. | |
| virtual void | numberFormat (LogString &toAppendTo, int n, log4cxx::helpers::Pool &p) const |
| Public Member Functions inherited from log4cxx::helpers::Object | |
| 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 |
Protected Member Functions | |
| DateFormat () | |
| Constructor. | |
DateFormat is an abstract class for date/time formatting patterned after java.text.DateFormat.
|
virtual |
Destructor.
|
protected |
Constructor.
| void log4cxx::helpers::DateFormat::format | ( | LogString & | toAppendTo, |
| log4cxx_time_t | tm ) const |
|
pure virtual |
pool parameter is not used and will be removed in a future version. Implement this method for now, but plan to migrate to format() without a helpers::Pool parameter. Implemented in log4cxx::helpers::RelativeTimeDateFormat, log4cxx::helpers::SimpleDateFormat, log4cxx::helpers::StrftimeDateFormat, and log4cxx::pattern::CachedDateFormat.
| void log4cxx::helpers::DateFormat::numberFormat | ( | LogString & | toAppendTo, |
| int | n ) const |
Format an integer consistent with the format method.
| toAppendTo | string to which the numeric string is appended. |
| n | integer value. |
| p | memory pool used during formatting. |
|
virtual |
pool parameter is not used and will be removed in a future version. Reimplemented in log4cxx::pattern::CachedDateFormat.
|
virtual |
Sets the time zone.
| zone | the given new time zone. |
Reimplemented in log4cxx::helpers::SimpleDateFormat, and log4cxx::helpers::StrftimeDateFormat.