| java.lang.Object | |
| ↳ | java.util.logging.Formatter |
Known Direct Subclasses
|
Formatter
objects are used to format
LogRecord
objects into a
string representation. Head and tail strings are sometimes used to wrap a set
of records. The
getHead
and
getTail
methods are used for this
purpose.
| Protected Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Constructs a
Formatter
object.
|
||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
Converts a
LogRecord
object into a string representation.
|
||||||||||
|
|
Formats a
LogRecord
object into a localized string
representation.
|
||||||||||
|
|
Gets the head string used to wrap a set of log records.
|
||||||||||
|
|
Gets the tail string used to wrap a set of log records.
|
||||||||||
|
[Expand]
Inherited Methods
|
|||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
|||||||||||
Converts a
LogRecord
object into a string representation. The
resulted string is usually localized and includes the message field of
the record.
| r | the log record to be formatted into a string. |
|---|
Formats a
LogRecord
object into a localized string
representation. This is a convenience method for subclasses of
Formatter
.
The message string is firstly localized using the
ResourceBundle
object associated with the supplied
LogRecord
.
Notice : if message contains "{0", then java.text.MessageFormat is used. Otherwise no formatting is performed.
| r | the log record to be formatted. |
|---|
Gets the head string used to wrap a set of log records. This base class always returns an empty string.
| h | the target handler. |
|---|
Gets the tail string used to wrap a set of log records. This base class always returns the empty string.
| h | the target handler. |
|---|