Package org.apache.log4j
Class Priority
java.lang.Object
org.apache.log4j.Priority
- Direct Known Subclasses:
Level
Refrain from using this class directly, use
the
Level class instead.- Author:
- Ceki Gülcü
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic intstatic PriorityDeprecated.static intstatic PriorityDeprecated.UseLevel.ERRORinstead.static intstatic PriorityDeprecated.UseLevel.FATALinstead.static intstatic PriorityDeprecated.UseLevel.INFOinstead.static intstatic intstatic PriorityDeprecated.UseLevel.WARNinstead.static int -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanTwo priorities are equal if their level fields are equal.static Priority[]Deprecated.This method will be removed with no replacement.intReturn the syslog equivalent of this priority as an integer.booleanReturnstrueif this level has a higher or equal level than the level passed as argument,falseotherwise.inttoInt()Returns the integer representation of this level.static PrioritytoPriority(int val)Deprecated.Please use theLevel.toLevel(int)method instead.static PrioritytoPriority(int val, Priority defaultPriority)Deprecated.Please use theLevel.toLevel(int, Level)method instead.static PrioritytoPriority(String sArg)Deprecated.Please use theLevel.toLevel(String)method instead.static PrioritytoPriority(String sArg, Priority defaultPriority)Deprecated.Please use theLevel.toLevel(String, Level)method instead.toString()Returns the string representation of this priority.
-
Field Details
-
OFF_INT
public static final int OFF_INT- See Also:
- Constant Field Values
-
FATAL_INT
public static final int FATAL_INT- See Also:
- Constant Field Values
-
ERROR_INT
public static final int ERROR_INT- See Also:
- Constant Field Values
-
WARN_INT
public static final int WARN_INT- See Also:
- Constant Field Values
-
INFO_INT
public static final int INFO_INT- See Also:
- Constant Field Values
-
DEBUG_INT
public static final int DEBUG_INT- See Also:
- Constant Field Values
-
ALL_INT
public static final int ALL_INT- See Also:
- Constant Field Values
-
FATAL
Deprecated.UseLevel.FATALinstead. -
ERROR
Deprecated.UseLevel.ERRORinstead. -
WARN
Deprecated.UseLevel.WARNinstead. -
INFO
Deprecated.UseLevel.INFOinstead. -
DEBUG
Deprecated.UseLevel.DEBUGinstead.
-
-
Constructor Details
-
Priority
protected Priority()Default constructor for deserialization. -
Priority
Instantiate a level object.- Parameters:
level- a level as in intlevelStr- a levelStrsyslogEquivalent- the syslog equivalent level integer
-
-
Method Details
-
equals
Two priorities are equal if their level fields are equal. -
getSyslogEquivalent
public final int getSyslogEquivalent()Return the syslog equivalent of this priority as an integer.- Returns:
- the Syslog Equivalent of this Priority
-
isGreaterOrEqual
Returnstrueif this level has a higher or equal level than the level passed as argument,falseotherwise.You should think twice before overriding the default implementation of
isGreaterOrEqualmethod.- Parameters:
r- a priority- Returns:
- a boolean
-
getAllPossiblePriorities
Deprecated.This method will be removed with no replacement.Return all possible priorities as an array of Level objects in descending order.- Returns:
- array of all possible priorities
-
toString
Returns the string representation of this priority. -
toInt
public final int toInt()Returns the integer representation of this level.- Returns:
- integer representation of this level
-
toPriority
Deprecated.Please use theLevel.toLevel(String)method instead.- Parameters:
sArg- a string to convert to a Priority- Returns:
- the corresponding Priority
-
toPriority
Deprecated.Please use theLevel.toLevel(int)method instead.- Parameters:
val- an integer to convert to a Priority- Returns:
- the corresponding Priority
-
toPriority
Deprecated.Please use theLevel.toLevel(int, Level)method instead.- Parameters:
val- an integer valuedefaultPriority- a default priority value- Returns:
- correspoding Priority value
-
toPriority
Deprecated.Please use theLevel.toLevel(String, Level)method instead.- Parameters:
sArg- string valuedefaultPriority- a default Priority- Returns:
- a Priority
-
Level.DEBUGinstead.