Class Overview
Formats a string literal.
Summary
Public Methods |
void
|
format(Object obj, StringBuffer toAppendTo)
Formats an object into a string buffer.
|
void
|
format(LoggingEvent event, StringBuffer toAppendTo)
Formats an event into a string buffer.
|
[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 Constructors
public
LiteralPatternConverter
(String literal)
Public Methods
public
void
format
(Object obj, StringBuffer toAppendTo)
Formats an object into a string buffer.
Parameters
obj
| event to format, may not be null. |
toAppendTo
| string buffer to which the formatted event will be appended. May not be null.
|
public
void
format
(LoggingEvent event, StringBuffer toAppendTo)
Formats an event into a string buffer.
Parameters
event
| event to format, may not be null. |
toAppendTo
| string buffer to which the formatted event will be appended. May not be null.
|