java.util.logging
Class Level

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.util.logging.Level
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable

public class Level
extends Object sample code for java.lang.Object definition code for java.lang.Object
implements Serializable sample code for java.io.Serializable definition code for java.io.Serializable

The Level class defines a set of standard logging levels that can be used to control logging output. The logging Level objects are ordered and are specified by ordered integers. Enabling logging at a given level also enables logging at all higher levels.

Clients should normally use the predefined Level constants such as Level.SEVERE.

The levels in descending order are:

In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

It is possible for third parties to define additional logging levels by subclassing Level. In such cases subclasses should take care to chose unique integer level values and to ensure that they maintain the Object uniqueness property across serialization by defining a suitable readResolve method.

Since:
1.4
See Also:
Serialized Form

Field Summary
static Level sample code for java.util.logging.Level definition code for java.util.logging.Level ALL sample code for java.util.logging.Level.ALL definition code for java.util.logging.Level.ALL
          ALL indicates that all messages should be logged.
static Level sample code for java.util.logging.Level definition code for java.util.logging.Level CONFIG sample code for java.util.logging.Level.CONFIG definition code for java.util.logging.Level.CONFIG
          CONFIG is a message level for static configuration messages.
static Level sample code for java.util.logging.Level definition code for java.util.logging.Level FINE sample code for java.util.logging.Level.FINE definition code for java.util.logging.Level.FINE
          FINE is a message level providing tracing information.
static Level sample code for java.util.logging.Level definition code for java.util.logging.Level FINER sample code for java.util.logging.Level.FINER definition code for java.util.logging.Level.FINER
          FINER indicates a fairly detailed tracing message.
static Level sample code for java.util.logging.Level definition code for java.util.logging.Level FINEST sample code for java.util.logging.Level.FINEST definition code for java.util.logging.Level.FINEST
          FINEST indicates a highly detailed tracing message.
static Level sample code for java.util.logging.Level definition code for java.util.logging.Level INFO sample code for java.util.logging.Level.INFO definition code for java.util.logging.Level.INFO
          INFO is a message level for informational messages.
static Level sample code for java.util.logging.Level definition code for java.util.logging.Level OFF sample code for java.util.logging.Level.OFF definition code for java.util.logging.Level.OFF
          OFF is a special level that can be used to turn off logging.
static Level sample code for java.util.logging.Level definition code for java.util.logging.Level SEVERE sample code for java.util.logging.Level.SEVERE definition code for java.util.logging.Level.SEVERE
          SEVERE is a message level indicating a serious failure.
static Level sample code for java.util.logging.Level definition code for java.util.logging.Level WARNING sample code for java.util.logging.Level.WARNING definition code for java.util.logging.Level.WARNING
          WARNING is a message level indicating a potential problem.
 
Constructor Summary
protected Level sample code for java.util.logging.Level.Level(java.lang.String, int) definition code for java.util.logging.Level.Level(java.lang.String, int) (String sample code for java.lang.String definition code for java.lang.String  name, int value)
          Create a named Level with a given integer value.
protected Level sample code for java.util.logging.Level.Level(java.lang.String, int, java.lang.String) definition code for java.util.logging.Level.Level(java.lang.String, int, java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  name, int value, String sample code for java.lang.String definition code for java.lang.String  resourceBundleName)
          Create a named Level with a given integer value and a given localization resource name.
 
Method Summary
 boolean equals sample code for java.util.logging.Level.equals(java.lang.Object) definition code for java.util.logging.Level.equals(java.lang.Object) (Object sample code for java.lang.Object definition code for java.lang.Object  ox)
          Compare two objects for value equality.
 String sample code for java.lang.String definition code for java.lang.String getLocalizedName sample code for java.util.logging.Level.getLocalizedName() definition code for java.util.logging.Level.getLocalizedName() ()
          Return the localized string name of the Level, for the current default locale.
 String sample code for java.lang.String definition code for java.lang.String getName sample code for java.util.logging.Level.getName() definition code for java.util.logging.Level.getName() ()
          Return the non-localized string name of the Level.
 String sample code for java.lang.String definition code for java.lang.String getResourceBundleName sample code for java.util.logging.Level.getResourceBundleName() definition code for java.util.logging.Level.getResourceBundleName() ()
          Return the level's localization resource bundle name, or null if no localization bundle is defined.
 int hashCode sample code for java.util.logging.Level.hashCode() definition code for java.util.logging.Level.hashCode() ()
          Generate a hashcode.
 int intValue sample code for java.util.logging.Level.intValue() definition code for java.util.logging.Level.intValue() ()
          Get the integer value for this level.
static Level sample code for java.util.logging.Level definition code for java.util.logging.Level parse sample code for java.util.logging.Level.parse(java.lang.String) definition code for java.util.logging.Level.parse(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  name)
          Parse a level name string into a Level.
 String sample code for java.lang.String definition code for java.lang.String toString sample code for java.util.logging.Level.toString() definition code for java.util.logging.Level.toString() ()
          Returns a string representation of the object.
 
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() , 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() , 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() , 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)
 

Field Detail

OFF sample code for java.util.logging.Level.OFF

public static final Level sample code for java.util.logging.Level definition code for java.util.logging.Level  OFF
OFF is a special level that can be used to turn off logging. This level is initialized to Integer.MAX_VALUE.


SEVERE sample code for java.util.logging.Level.SEVERE

public static final Level sample code for java.util.logging.Level definition code for java.util.logging.Level  SEVERE
SEVERE is a message level indicating a serious failure.

In general SEVERE messages should describe events that are of considerable importance and which will prevent normal program execution. They should be reasonably intelligible to end users and to system administrators. This level is initialized to 1000.


WARNING sample code for java.util.logging.Level.WARNING

public static final Level sample code for java.util.logging.Level definition code for java.util.logging.Level  WARNING
WARNING is a message level indicating a potential problem.

In general WARNING messages should describe events that will be of interest to end users or system managers, or which indicate potential problems. This level is initialized to 900.


INFO sample code for java.util.logging.Level.INFO

public static final Level sample code for java.util.logging.Level definition code for java.util.logging.Level  INFO
INFO is a message level for informational messages.

Typically INFO messages will be written to the console or its equivalent. So the INFO level should only be used for reasonably significant messages that will make sense to end users and system admins. This level is initialized to 800.


CONFIG sample code for java.util.logging.Level.CONFIG

public static final Level sample code for java.util.logging.Level definition code for java.util.logging.Level  CONFIG
CONFIG is a message level for static configuration messages.

CONFIG messages are intended to provide a variety of static configuration information, to assist in debugging problems that may be associated with particular configurations. For example, CONFIG message might include the CPU type, the graphics depth, the GUI look-and-feel, etc. This level is initialized to 700.


FINE sample code for java.util.logging.Level.FINE

public static final Level sample code for java.util.logging.Level definition code for java.util.logging.Level  FINE
FINE is a message level providing tracing information.

All of FINE, FINER, and FINEST are intended for relatively detailed tracing. The exact meaning of the three levels will vary between subsystems, but in general, FINEST should be used for the most voluminous detailed output, FINER for somewhat less detailed output, and FINE for the lowest volume (and most important) messages.

In general the FINE level should be used for information that will be broadly interesting to developers who do not have a specialized interest in the specific subsystem.

FINE messages might include things like minor (recoverable) failures. Issues indicating potential performance problems are also worth logging as FINE. This level is initialized to 500.


FINER sample code for java.util.logging.Level.FINER

public static final Level sample code for java.util.logging.Level definition code for java.util.logging.Level  FINER
FINER indicates a fairly detailed tracing message. By default logging calls for entering, returning, or throwing an exception are traced at this level. This level is initialized to 400.


FINEST sample code for java.util.logging.Level.FINEST

public static final Level sample code for java.util.logging.Level definition code for java.util.logging.Level  FINEST
FINEST indicates a highly detailed tracing message. This level is initialized to 300.


ALL sample code for java.util.logging.Level.ALL

public static final Level sample code for java.util.logging.Level definition code for java.util.logging.Level  ALL
ALL indicates that all messages should be logged. This level is initialized to Integer.MIN_VALUE.

Constructor Detail

Level sample code for java.util.logging.Level(java.lang.String, int) definition code for java.util.logging.Level(java.lang.String, int)

protected Level(String sample code for java.lang.String definition code for java.lang.String  name,
                int value)
Create a named Level with a given integer value.

Note that this constructor is "protected" to allow subclassing. In general clients of logging should use one of the constant Level objects such as SEVERE or FINEST. However, if clients need to add new logging levels, they may subclass Level and define new constants.

Parameters:
name - the name of the Level, for example "SEVERE".
value - an integer value for the level.
Throws:
NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException - if the name is null

Level sample code for java.util.logging.Level(java.lang.String, int, java.lang.String) definition code for java.util.logging.Level(java.lang.String, int, java.lang.String)

protected Level(String sample code for java.lang.String definition code for java.lang.String  name,
                int value,
                String sample code for java.lang.String definition code for java.lang.String  resourceBundleName)
Create a named Level with a given integer value and a given localization resource name.

Parameters:
name - the name of the Level, for example "SEVERE".
value - an integer value for the level.
resourceBundleName - name of a resource bundle to use in localizing the given name. If the resourceBundleName is null or an empty string, it is ignored.
Throws:
NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException - if the name is null
Method Detail

getResourceBundleName sample code for java.util.logging.Level.getResourceBundleName() definition code for java.util.logging.Level.getResourceBundleName()

public String sample code for java.lang.String definition code for java.lang.String  getResourceBundleName()
Return the level's localization resource bundle name, or null if no localization bundle is defined.

Returns:
localization resource bundle name

getName sample code for java.util.logging.Level.getName() definition code for java.util.logging.Level.getName()

public String sample code for java.lang.String definition code for java.lang.String  getName()
Return the non-localized string name of the Level.

Returns:
non-localized name

getLocalizedName sample code for java.util.logging.Level.getLocalizedName() definition code for java.util.logging.Level.getLocalizedName()

public String sample code for java.lang.String definition code for java.lang.String  getLocalizedName()
Return the localized string name of the Level, for the current default locale.

If no localization information is available, the non-localized name is returned.

Returns:
localized name

toString sample code for java.util.logging.Level.toString() definition code for java.util.logging.Level.toString()

public final String sample code for java.lang.String definition code for java.lang.String  toString()
Description copied from class: Object sample code for java.lang.Object.toString() definition code for java.lang.Object.toString()
Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.

The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Overrides:
toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() in class Object sample code for java.lang.Object definition code for java.lang.Object
Returns:
the non-localized name of the Level, for example "INFO".

intValue sample code for java.util.logging.Level.intValue() definition code for java.util.logging.Level.intValue()

public final int intValue()
Get the integer value for this level. This integer value can be used for efficient ordering comparisons between Level objects.

Returns:
the integer value for this level.

parse sample code for java.util.logging.Level.parse(java.lang.String) definition code for java.util.logging.Level.parse(java.lang.String)

public static Level sample code for java.util.logging.Level definition code for java.util.logging.Level  parse(String sample code for java.lang.String definition code for java.lang.String  name)
                   throws IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException 
Parse a level name string into a Level.

The argument string may consist of either a level name or an integer value.

For example:

Parameters:
name - string to be parsed
Returns:
The parsed value. Passing an integer that corresponds to a known name (eg 700) will return the associated name (eg CONFIG). Passing an integer that does not (eg 1) will return a new level name initialized to that value.
Throws:
NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException - if the name is null
IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException - if the value is not valid. Valid values are integers between Integer.MIN_VALUE and Integer.MAX_VALUE, and all known level names. Known names are the levels defined by this class (i.e. FINE, FINER, FINEST), or created by this class with appropriate package access, or new levels defined or created by subclasses.

equals sample code for java.util.logging.Level.equals(java.lang.Object) definition code for java.util.logging.Level.equals(java.lang.Object)

public boolean equals(Object sample code for java.lang.Object definition code for java.lang.Object  ox)
Compare two objects for value equality.

Overrides:
equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) in class Object sample code for java.lang.Object definition code for java.lang.Object
Parameters:
ox - the reference object with which to compare.
Returns:
true if and only if the two objects have the same level value.
See Also:
Object.hashCode() sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , Hashtable sample code for java.util.Hashtable definition code for java.util.Hashtable

hashCode sample code for java.util.logging.Level.hashCode() definition code for java.util.logging.Level.hashCode()

public int hashCode()
Generate a hashcode.

Overrides:
hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() in class Object sample code for java.lang.Object definition code for java.lang.Object
Returns:
a hashcode based on the level value
See Also:
Object.equals(java.lang.Object) sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , Hashtable sample code for java.util.Hashtable definition code for java.util.Hashtable