java.util.logging
Class Formatter

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.util.logging.Formatter
Direct Known Subclasses:
SimpleFormatter sample code for java.util.logging.SimpleFormatter definition code for java.util.logging.SimpleFormatter , XMLFormatter sample code for java.util.logging.XMLFormatter definition code for java.util.logging.XMLFormatter

public abstract class Formatter
extends Object sample code for java.lang.Object definition code for java.lang.Object

A Formatter provides support for formatting LogRecords.

Typically each logging Handler will have a Formatter associated with it. The Formatter takes a LogRecord and converts it to a string.

Some formatters (such as the XMLFormatter) need to wrap head and tail strings around a set of formatted records. The getHeader and getTail methods can be used to obtain these strings.

Since:
1.4

Constructor Summary
protected Formatter sample code for java.util.logging.Formatter.Formatter() definition code for java.util.logging.Formatter.Formatter() ()
          Construct a new formatter.
 
Method Summary
abstract  String sample code for java.lang.String definition code for java.lang.String format sample code for java.util.logging.Formatter.format(java.util.logging.LogRecord) definition code for java.util.logging.Formatter.format(java.util.logging.LogRecord) (LogRecord sample code for java.util.logging.LogRecord definition code for java.util.logging.LogRecord  record)
          Format the given log record and return the formatted string.
 String sample code for java.lang.String definition code for java.lang.String formatMessage sample code for java.util.logging.Formatter.formatMessage(java.util.logging.LogRecord) definition code for java.util.logging.Formatter.formatMessage(java.util.logging.LogRecord) (LogRecord sample code for java.util.logging.LogRecord definition code for java.util.logging.LogRecord  record)
          Localize and format the message string from a log record.
 String sample code for java.lang.String definition code for java.lang.String getHead sample code for java.util.logging.Formatter.getHead(java.util.logging.Handler) definition code for java.util.logging.Formatter.getHead(java.util.logging.Handler) (Handler sample code for java.util.logging.Handler definition code for java.util.logging.Handler  h)
          Return the header string for a set of formatted records.
 String sample code for java.lang.String definition code for java.lang.String getTail sample code for java.util.logging.Formatter.getTail(java.util.logging.Handler) definition code for java.util.logging.Formatter.getTail(java.util.logging.Handler) (Handler sample code for java.util.logging.Handler definition code for java.util.logging.Handler  h)
          Return the tail string for a set of formatted records.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

Formatter sample code for java.util.logging.Formatter() definition code for java.util.logging.Formatter()

protected Formatter()
Construct a new formatter.

Method Detail

format sample code for java.util.logging.Formatter.format(java.util.logging.LogRecord) definition code for java.util.logging.Formatter.format(java.util.logging.LogRecord)

public abstract String sample code for java.lang.String definition code for java.lang.String  format(LogRecord sample code for java.util.logging.LogRecord definition code for java.util.logging.LogRecord  record)
Format the given log record and return the formatted string.

The resulting formatted String will normally include a localized and formated version of the LogRecord's message field. The Formatter.formatMessage convenience method can (optionally) be used to localize and format the message field.

Parameters:
record - the log record to be formatted.
Returns:
the formatted log record

getHead sample code for java.util.logging.Formatter.getHead(java.util.logging.Handler) definition code for java.util.logging.Formatter.getHead(java.util.logging.Handler)

public String sample code for java.lang.String definition code for java.lang.String  getHead(Handler sample code for java.util.logging.Handler definition code for java.util.logging.Handler  h)
Return the header string for a set of formatted records.

This base class returns an empty string, but this may be overriden by subclasses.

Parameters:
h - The target handler (can be null)
Returns:
header string

getTail sample code for java.util.logging.Formatter.getTail(java.util.logging.Handler) definition code for java.util.logging.Formatter.getTail(java.util.logging.Handler)

public String sample code for java.lang.String definition code for java.lang.String  getTail(Handler sample code for java.util.logging.Handler definition code for java.util.logging.Handler  h)
Return the tail string for a set of formatted records.

This base class returns an empty string, but this may be overriden by subclasses.

Parameters:
h - The target handler (can be null)
Returns:
tail string

formatMessage sample code for java.util.logging.Formatter.formatMessage(java.util.logging.LogRecord) definition code for java.util.logging.Formatter.formatMessage(java.util.logging.LogRecord)

public String sample code for java.lang.String definition code for java.lang.String  formatMessage(LogRecord sample code for java.util.logging.LogRecord definition code for java.util.logging.LogRecord  record)
Localize and format the message string from a log record. This method is provided as a convenience for Formatter subclasses to use when they are performing formatting.

The message string is first localized to a format string using the record's ResourceBundle. (If there is no ResourceBundle, or if the message key is not found, then the key is used as the format string.) The format String uses java.text style formatting.

Parameters:
record - the log record containing the raw message
Returns:
a localized and formatted message