public static enum AgentLogger.Level extends Enum<AgentLogger.Level>
| Enum Constant and Description |
|---|
DEBUG |
ERROR |
INFO |
RELOAD |
TRACE |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static AgentLogger.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgentLogger.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgentLogger.Level ERROR
public static final AgentLogger.Level RELOAD
public static final AgentLogger.Level WARNING
public static final AgentLogger.Level INFO
public static final AgentLogger.Level DEBUG
public static final AgentLogger.Level TRACE
public static AgentLogger.Level[] values()
for (AgentLogger.Level c : AgentLogger.Level.values()) System.out.println(c);
public static AgentLogger.Level 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 nullCopyright © 2018. All rights reserved.