Oracle Java ME Embedded
A C E F G H I L O P R S T W 

A

addHandler(Handler) - Method in class com.oracle.util.logging.Logger
Add a log Handler to receive logging messages.
addLogger(Logger) - Method in class com.oracle.util.logging.LogManager
Add a named logger.
ALL - Static variable in class com.oracle.util.logging.Level
ALL indicates that all messages should be logged.

C

checkAccess() - Method in class com.oracle.util.logging.LogManager
Check that the current context is trusted to modify the logging configuration.
close() - Method in class com.oracle.util.logging.ConsoleHandler
Override StreamHandler.close to do a flush but not to close the output stream.
close() - Method in class com.oracle.util.logging.Handler
Close the Handler and free all associated resources.
close() - Method in class com.oracle.util.logging.StreamHandler
Close the current output stream.
com.oracle.util.logging - package com.oracle.util.logging
 
CONFIG - Static variable in class com.oracle.util.logging.Level
CONFIG is a message level for static configuration messages.
ConsoleHandler - Class in com.oracle.util.logging
This Handler publishes log records to System.err.
ConsoleHandler() - Constructor for class com.oracle.util.logging.ConsoleHandler
Create a ConsoleHandler for System.err.

E

equals(Object) - Method in class com.oracle.util.logging.Level
Compare two objects for value equality.

F

Filter - Interface in com.oracle.util.logging
A Filter can be used to provide fine grain control over what is logged, beyond the control provided by log levels.
FINE - Static variable in class com.oracle.util.logging.Level
FINE is a message level providing tracing information.
FINER - Static variable in class com.oracle.util.logging.Level
FINER indicates a fairly detailed tracing message.
FINEST - Static variable in class com.oracle.util.logging.Level
FINEST indicates a highly detailed tracing message.
flush() - Method in class com.oracle.util.logging.Handler
Flush any buffered output.
flush() - Method in class com.oracle.util.logging.StreamHandler
Flush any buffered messages.
format(LogRecord) - Method in class com.oracle.util.logging.Formatter
Format the given log record and return the formatted string.
format(LogRecord) - Method in class com.oracle.util.logging.SimpleFormatter
Format the given LogRecord.
formatMessage(LogRecord) - Method in class com.oracle.util.logging.Formatter
Localize and format the message string from a log record.
Formatter - Class in com.oracle.util.logging
A Formatter provides support for formatting LogRecords.
Formatter() - Constructor for class com.oracle.util.logging.Formatter
Construct a new formatter.

G

getAnonymousLogger() - Static method in class com.oracle.util.logging.Logger
Create an anonymous Logger.
getFilter() - Method in class com.oracle.util.logging.Handler
Get the current Filter for this Handler.
getFilter() - Method in class com.oracle.util.logging.Logger
Get the current filter for this Logger.
getFormatter() - Method in class com.oracle.util.logging.Handler
Return the Formatter for this Handler.
getGlobal() - Static method in class com.oracle.util.logging.Logger
Return global logger object with the name Logger.GLOBAL_LOGGER_NAME.
getHandlers() - Method in class com.oracle.util.logging.Logger
Get the Handlers associated with this logger.
getHead(Handler) - Method in class com.oracle.util.logging.Formatter
Return the header string for a set of formatted records.
getLevel() - Method in class com.oracle.util.logging.Handler
Get the log level specifying which messages will be logged by this Handler.
getLevel() - Method in class com.oracle.util.logging.Logger
Get the log Level that has been specified for this Logger.
getLevel() - Method in class com.oracle.util.logging.LogRecord
Get the logging message level, for example Level.SEVERE.
getLogger(String) - Static method in class com.oracle.util.logging.Logger
Find or create a logger for a named subsystem.
getLogger(String) - Method in class com.oracle.util.logging.LogManager
Method to find a named logger.
getLoggerName() - Method in class com.oracle.util.logging.LogRecord
Get the source Logger's name.
getLoggerNames() - Method in class com.oracle.util.logging.LogManager
Get an enumeration of known logger names.
getLogManager() - Static method in class com.oracle.util.logging.LogManager
Return the global LogManager object.
getMessage() - Method in class com.oracle.util.logging.LogRecord
Get the "raw" log message, before localization or formatting.
getMillis() - Method in class com.oracle.util.logging.LogRecord
Get event time in milliseconds since 1970.
getName() - Method in class com.oracle.util.logging.Level
Return the non-localized string name of the Level.
getName() - Method in class com.oracle.util.logging.Logger
Get the name for this logger.
getParameters() - Method in class com.oracle.util.logging.LogRecord
Get the parameters to the log message.
getParent() - Method in class com.oracle.util.logging.Logger
Return the parent for this Logger.
getSequenceNumber() - Method in class com.oracle.util.logging.LogRecord
Get the sequence number.
getSourceClassName() - Method in class com.oracle.util.logging.LogRecord
Get the name of the class that (allegedly) issued the logging request.
getSourceMethodName() - Method in class com.oracle.util.logging.LogRecord
Get the name of the method that (allegedly) issued the logging request.
getTail(Handler) - Method in class com.oracle.util.logging.Formatter
Return the tail string for a set of formatted records.
getThreadID() - Method in class com.oracle.util.logging.LogRecord
Get an identifier for the thread where the message originated.
getThrown() - Method in class com.oracle.util.logging.LogRecord
Get any throwable associated with the log record.
getUseParentHandlers() - Method in class com.oracle.util.logging.Logger
Discover whether or not this logger is sending its output to its parent logger.
GLOBAL_LOGGER_NAME - Static variable in class com.oracle.util.logging.Logger
GLOBAL_LOGGER_NAME is a name for the global logger.

H

Handler - Class in com.oracle.util.logging
A Handler object takes log messages from a Logger and exports them.
Handler() - Constructor for class com.oracle.util.logging.Handler
Default constructor.
hashCode() - Method in class com.oracle.util.logging.Level
Generate a hashcode.

I

INFO - Static variable in class com.oracle.util.logging.Level
INFO is a message level for informational messages.
intValue() - Method in class com.oracle.util.logging.Level
Get the integer value for this level.
isLoggable(LogRecord) - Method in interface com.oracle.util.logging.Filter
Check if a given log record should be published.
isLoggable(LogRecord) - Method in class com.oracle.util.logging.Handler
Check if this Handler would actually log a given LogRecord.
isLoggable(Level) - Method in class com.oracle.util.logging.Logger
Check if a message of the given level would actually be logged by this logger.
isLoggable(LogRecord) - Method in class com.oracle.util.logging.StreamHandler
Check if this Handler would actually log a given LogRecord.

L

Level - Class in com.oracle.util.logging
The Level class defines a set of standard logging levels that can be used to control logging output.
Level(String, int) - Constructor for class com.oracle.util.logging.Level
Create a named Level with a given integer value.
log(LogRecord) - Method in class com.oracle.util.logging.Logger
Log a LogRecord.
log(Level, String) - Method in class com.oracle.util.logging.Logger
Log a message, with no arguments.
log(Level, String, Object) - Method in class com.oracle.util.logging.Logger
Log a message, with one object parameter.
log(Level, String, Object[]) - Method in class com.oracle.util.logging.Logger
Log a message, with an array of object arguments.
log(Level, String, Throwable) - Method in class com.oracle.util.logging.Logger
Log a message, with associated Throwable information.
Logger - Class in com.oracle.util.logging
A Logger object is used to log messages for a specific system or application component.
LogManager - Class in com.oracle.util.logging
There is a single global LogManager object that is used to maintain a set of shared state about Loggers and log services.
LogManager() - Constructor for class com.oracle.util.logging.LogManager
Protected constructor.
logp(Level, String, String, String) - Method in class com.oracle.util.logging.Logger
Log a message, specifying source class and method, with no arguments.
logp(Level, String, String, String, Object) - Method in class com.oracle.util.logging.Logger
Log a message, specifying source class and method, with a single object parameter to the log message.
logp(Level, String, String, String, Object[]) - Method in class com.oracle.util.logging.Logger
Log a message, specifying source class and method, with an array of object arguments.
logp(Level, String, String, String, Throwable) - Method in class com.oracle.util.logging.Logger
Log a message, specifying source class and method, with associated Throwable information.
LogRecord - Class in com.oracle.util.logging
LogRecord objects are used to pass logging requests between the logging framework and individual log Handlers.
LogRecord(Level, String) - Constructor for class com.oracle.util.logging.LogRecord
Construct a LogRecord with the given level and message values.

O

OFF - Static variable in class com.oracle.util.logging.Level
OFF is a special level that can be used to turn off logging.

P

parse(String) - Static method in class com.oracle.util.logging.Level
Parse a level name string into a Level.
publish(LogRecord) - Method in class com.oracle.util.logging.Handler
Publish a LogRecord.
publish(LogRecord) - Method in class com.oracle.util.logging.StreamHandler
Format and publish a LogRecord.

R

removeHandler(Handler) - Method in class com.oracle.util.logging.Logger
Remove a log Handler.
reportError(String, Exception, int) - Method in class com.oracle.util.logging.Handler
Protected convenience method to report an error.
reset() - Method in class com.oracle.util.logging.LogManager
Reset the logging configuration.

S

setEncoding(String) - Method in class com.oracle.util.logging.StreamHandler
Set (or change) the character encoding used by this Handler.
setFilter(Filter) - Method in class com.oracle.util.logging.Handler
Set a Filter to control output on this Handler.
setFilter(Filter) - Method in class com.oracle.util.logging.Logger
Set a filter to control output on this Logger.
setFormatter(Formatter) - Method in class com.oracle.util.logging.Handler
Set a Formatter.
setLevel(Level) - Method in class com.oracle.util.logging.Handler
Set the log level specifying which message levels will be logged by this Handler.
setLevel(Level) - Method in class com.oracle.util.logging.Logger
Set the log level specifying which message levels will be logged by this logger.
setLevel(Level) - Method in class com.oracle.util.logging.LogRecord
Set the logging message level, for example Level.SEVERE.
setLoggerName(String) - Method in class com.oracle.util.logging.LogRecord
Set the source Logger's name.
setMessage(String) - Method in class com.oracle.util.logging.LogRecord
Set the "raw" log message, before localization or formatting.
setMillis(long) - Method in class com.oracle.util.logging.LogRecord
Set event time.
setOutputStream(OutputStream) - Method in class com.oracle.util.logging.StreamHandler
Change the output stream.
setParameters(Object[]) - Method in class com.oracle.util.logging.LogRecord
Set the parameters to the log message.
setParent(Logger) - Method in class com.oracle.util.logging.Logger
Set the parent for this Logger.
setSequenceNumber(long) - Method in class com.oracle.util.logging.LogRecord
Set the sequence number.
setSourceClassName(String) - Method in class com.oracle.util.logging.LogRecord
Set the name of the class that (allegedly) issued the logging request.
setSourceMethodName(String) - Method in class com.oracle.util.logging.LogRecord
Set the name of the method that (allegedly) issued the logging request.
setThreadID(int) - Method in class com.oracle.util.logging.LogRecord
Set an identifier for the thread where the message originated.
setThrown(Throwable) - Method in class com.oracle.util.logging.LogRecord
Set a throwable associated with the log event.
setUseParentHandlers(boolean) - Method in class com.oracle.util.logging.Logger
Specify whether or not this logger should send its output to its parent Logger.
SEVERE - Static variable in class com.oracle.util.logging.Level
SEVERE is a message level indicating a serious failure.
SimpleFormatter - Class in com.oracle.util.logging
Print a brief summary of the LogRecord in a human readable format.
SimpleFormatter() - Constructor for class com.oracle.util.logging.SimpleFormatter
 
StreamHandler - Class in com.oracle.util.logging
Stream based logging Handler.
StreamHandler() - Constructor for class com.oracle.util.logging.StreamHandler
Create a StreamHandler, with no current output stream.
StreamHandler(OutputStream, Formatter) - Constructor for class com.oracle.util.logging.StreamHandler
Create a StreamHandler with a given Formatter and output stream.

T

toString() - Method in class com.oracle.util.logging.Level
Returns a string representation of this Level.

W

WARNING - Static variable in class com.oracle.util.logging.Level
WARNING is a message level indicating a potential problem.
A C E F G H I L O P R S T W 
Oracle Java ME Embedded

Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.