Class Overview
Convert and format the event's date in a StringBuffer.
Summary
Public Methods |
void
|
format(Object obj, StringBuffer output)
Formats an object into a string buffer.
|
void
|
format(LoggingEvent event, StringBuffer output)
Formats an event into a string buffer.
|
void
|
format(Date date, StringBuffer toAppendTo)
Append formatted date to string buffer.
|
static
DatePatternConverter
|
newInstance(String[] options)
Obtains an instance of pattern converter.
|
[Expand]
Inherited Methods |
From class
org.apache.log4j.pattern.LoggingEventPatternConverter
void
|
format(Object obj, StringBuffer output)
Formats an object into a string buffer.
|
abstract
void
|
format(LoggingEvent event, StringBuffer toAppendTo)
Formats an event into a string buffer.
|
boolean
|
handlesThrowable()
Normally pattern converters are not meant to handle Exceptions although
few pattern converters might.
|
|
From class
org.apache.log4j.pattern.PatternConverter
abstract
void
|
format(Object obj, StringBuffer toAppendTo)
Formats an object into a string buffer.
|
final
String
|
getName()
This method returns the name of the conversion pattern.
|
String
|
getStyleClass(Object e)
This method returns the CSS style class that should be applied to
the LoggingEvent passed as parameter, which can be null.
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
Public Methods
public
void
format
(Object obj, StringBuffer output)
Formats an object into a string buffer.
Parameters
obj
| event to format, may not be null. |
output
| string buffer to which the formatted event will be appended. May not be null.
|
public
void
format
(LoggingEvent event, StringBuffer output)
Formats an event into a string buffer.
Parameters
event
| event to format, may not be null. |
output
| string buffer to which the formatted event will be appended. May not be null.
|
public
void
format
(Date date, StringBuffer toAppendTo)
Append formatted date to string buffer.
Parameters
date
| date |
toAppendTo
| buffer to which formatted date is appended.
|
public
static
DatePatternConverter
newInstance
(String[] options)
Obtains an instance of pattern converter.
Parameters
options
| options, may be null. |
Returns
- instance of pattern converter.