On this page
Enum Class System.Logger.Level
- All Implemented Interfaces:
Serializable
,Comparable<System.Logger.Level>
,Constable
- Enclosing interface:
- System.Logger
public static enum System.Logger.Level extends Enum<System.Logger.Level>
ALL
, TRACE
, DEBUG
, INFO
, WARNING
, ERROR
, OFF
, by order of increasing severity. ALL
and OFF
are simple markers with severities mapped respectively to Integer.MIN_VALUE
and Integer.MAX_VALUE
.
Severity values and Mapping to java.util.logging.Level
.
System logger levels are mapped to java.util.logging levels of corresponding severity.
The mapping is as follows:
- Since:
- 9
- See Also:
Nested Class Summary
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Enum Constant Summary
Enum Constant | Description |
---|---|
ALL |
A marker to indicate that all levels are enabled.
|
DEBUG |
DEBUG level: usually used to log debug information traces.
|
ERROR |
ERROR level: usually used to log error messages.
|
INFO |
INFO level: usually used to log information messages.
|
OFF |
A marker to indicate that all levels are disabled.
|
TRACE |
TRACE level: usually used to log diagnostic information.
|
WARNING |
WARNING level: usually used to log warning messages.
|
Method Summary
Modifier and Type | Method | Description |
---|---|---|
final String |
getName() |
Returns the name of this level.
|
final int |
getSeverity() |
Returns the severity of this level.
|
static System.Logger.Level |
valueOf |
Returns the enum constant of this class with the specified name.
|
static System.Logger.Level[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared.
|
Enum Constant Details
ALL
public static final System.Logger.Level ALL
Integer.MIN_VALUE
.
TRACE
public static final System.Logger.Level TRACE
DEBUG
public static final System.Logger.Level DEBUG
INFO
public static final System.Logger.Level INFO
WARNING
public static final System.Logger.Level WARNING
ERROR
public static final System.Logger.Level ERROR
OFF
public static final System.Logger.Level OFF
Integer.MAX_VALUE
.
Method Details
values
public static System.Logger.Level[] values()
- Returns:
- an array containing the constants of this enum class, in the order they are declared
valueOf
public static System.Logger.Level valueOf(String name)
- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
getName
public final String getName()
- Returns:
- this level Enum.name().
getSeverity
public final int getSeverity()
- Returns:
- this level severity.
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/System.Logger.Level.html