public enum LogLevel extends java.lang.Enum<LogLevel>
The Enum.name()
method may be used to get the String identifier
for each log level, suitable for passing to
Logger.setThreshold(String)
.
The Enum.ordinal()
method may be used to get an integer representing
this log level, where OFF
has value 0, CRIT
is 1, etc.
Enum Constant and Description |
---|
CRIT |
DEBUG |
ERROR |
FATAL |
INFO |
OFF |
WARN |
Modifier and Type | Method and Description |
---|---|
static LogLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogLevel OFF
public static final LogLevel CRIT
public static final LogLevel FATAL
public static final LogLevel ERROR
public static final LogLevel WARN
public static final LogLevel INFO
public static final LogLevel DEBUG
public static LogLevel[] values()
for (LogLevel c : LogLevel.values()) System.out.println(c);
public static LogLevel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullSubmit a bug or feature
Copyright (c) 2013-2016 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors. Use, reproduction, transfer, publication or disclosure is prohibited except as specifically provided for in your License Agreement with Software AG.