API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.util.logging. Level View Source
Author(s)
Since
1.4
Version
1.20, 11/17/05
Serial
Hierarchy
 Object
      Level
Implements
 Serializable
Subclasses
Description
public class Level
  The Level class defines a set of standard logging levels that can be used to control logging output.
See also:   
Constructors
protected Level (String name, int value)
  Create a named Level with a given integer value.
protected Level (String name, int value, String resourceBundleName)
  Create a named Level with a given integer value and a given localization resource name.
Methods
Hide/Show inherited methods
public boolean equals (Object ox)
  Compare two objects for value equality.
public String getLocalizedName ()
  Return the localized string name of the Level, for the current default locale.
public String getName ()
  Return the non-localized string name of the Level.
public String getResourceBundleName ()
  Return the level's localization resource bundle name, or null if no localization bundle is defined.
public int hashCode ()
  Generate a hashcode.
publicfinal int intValue ()
  Get the integer value for this level.
publicstaticsynchronized Level parse (String name) throws IllegalArgumentException
  Parse a level name string into a Level.
publicfinal String toString ()
 
Fields
Hide/Show inherited fields
publicfinalstatic Level ALL
  ALL indicates that all messages should be logged.
publicfinalstatic Level CONFIG
  CONFIG is a message level for static configuration messages.
publicfinalstatic Level FINE
  FINE is a message level providing tracing information.
publicfinalstatic Level FINER
  FINER indicates a fairly detailed tracing message.
publicfinalstatic Level FINEST
  FINEST indicates a highly detailed tracing message.
publicfinalstatic Level INFO
  INFO is a message level for informational messages.
publicfinalstatic Level OFF
  OFF is a special level that can be used to turn off logging.
publicfinalstatic Level SEVERE
  SEVERE is a message level indicating a serious failure.
publicfinalstatic Level WARNING
  WARNING is a message level indicating a potential problem.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar