| org.objectweb.util.monolog.api.Level
All known Subclasses: org.objectweb.util.monolog.wrapper.common.LevelImpl,
Level | public interface Level (Code) | | This class represents a logging level. A logging level allows to
classify events by their importance. This interface provides
methods to compare Level instances. A level has a name.
author: S.Chassande-Barrioz |
compareTo | int compareTo(Level o)(Code) | | Compares this object with the specified object for order. Returns a
negative integer, zero, or a positive integer as this object is less than,
equal to, or greater than the specified object.
|
getIntValue | int getIntValue()(Code) | | Returns the integer value which represents the level.
|
getName | String getName()(Code) | | It retrieves the name of the Level
|
isComparableWith | boolean isComparableWith(Level o)(Code) | | This method returns true is the current level and the Level parameter are
ordered.
|
setName | void setName(String n)(Code) | | It assigns the name of the Level
|
|
|