Package org.eclipse.jetty.logging
Enum JettyLevel
- java.lang.Object
-
- java.lang.Enum<JettyLevel>
-
- org.eclipse.jetty.logging.JettyLevel
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<JettyLevel>
public enum JettyLevel extends java.lang.Enum<JettyLevel>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JettyLevel
fromLevel(org.slf4j.event.Level slf4jLevel)
boolean
includes(JettyLevel testLevel)
Tests that a provided level is included by the level value of this level.static JettyLevel
intToLevel(int levelInt)
static JettyLevel
strToLevel(java.lang.String levelStr)
int
toInt()
org.slf4j.event.Level
toLevel()
java.lang.String
toString()
static JettyLevel
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JettyLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final JettyLevel ALL
-
TRACE
public static final JettyLevel TRACE
-
DEBUG
public static final JettyLevel DEBUG
-
INFO
public static final JettyLevel INFO
-
WARN
public static final JettyLevel WARN
-
ERROR
public static final JettyLevel ERROR
-
OFF
public static final JettyLevel OFF
-
-
Method Detail
-
values
public static JettyLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JettyLevel c : JettyLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JettyLevel valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
fromLevel
public static JettyLevel fromLevel(org.slf4j.event.Level slf4jLevel)
-
toInt
public int toInt()
-
toLevel
public org.slf4j.event.Level toLevel()
-
includes
public boolean includes(JettyLevel testLevel)
Tests that a provided level is included by the level value of this level.- Parameters:
testLevel
- the level to test against.- Returns:
- true if includes this includes the test level.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<JettyLevel>
-
intToLevel
public static JettyLevel intToLevel(int levelInt)
-
strToLevel
public static JettyLevel strToLevel(java.lang.String levelStr)
-
-