Example usage for Java java.util.logging Handler fields, constructors, methods, implement or subclass
The text is from its open source code.
Handler() Default constructor. |
void | close() Close the Handler and free all associated resources. |
void | flush() Flush any buffered output. |
Class> | getClass() Returns the runtime class of this Object . |
ErrorManager | getErrorManager() Retrieves the ErrorManager for this Handler. |
Filter | getFilter() Get the current Filter for this Handler . |
Formatter | getFormatter() Return the Formatter for this Handler . |
Level | getLevel() Get the log level specifying which messages will be logged by this Handler . |
void | setEncoding(String encoding) Set the character encoding used by this Handler . |
void | setErrorManager(ErrorManager em) Define an ErrorManager for this Handler. |
void | setFilter(Filter newFilter) Set a Filter to control output on this Handler . |
void | setFormatter(Formatter newFormatter) Set a Formatter . |
void | setLevel(Level newLevel) Set the log level specifying which message levels will be logged by this Handler . |