public enum LogLevel extends Enum<LogLevel>
Enum Constant and Description |
---|
ALL
全部
|
DEBUG
调试
|
ERROR
错误
|
FATAL
失败
|
INFO
信息
|
OFF
关闭
|
TRACE
跟踪
|
WARN
警告
|
Modifier and Type | Method and Description |
---|---|
String |
getDisplayName() |
int |
getLevel() |
String |
getName() |
static LogLevel |
parse(int level) |
static org.apache.logging.log4j.Level |
parse(LogLevel level) |
static LogLevel |
parse(String levelName) |
static LogLevel |
valueOf(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 ALL
public static final LogLevel TRACE
public static final LogLevel DEBUG
public static final LogLevel INFO
public static final LogLevel WARN
public static final LogLevel ERROR
public static final LogLevel FATAL
public static final LogLevel OFF
public static LogLevel[] values()
for (LogLevel c : LogLevel.values()) System.out.println(c);
public static LogLevel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static LogLevel parse(int level)
public static org.apache.logging.log4j.Level parse(LogLevel level)
public int getLevel()
public String getName()
public String getDisplayName()
Copyright © 2022. All rights reserved.