public enum InternalLogLevel extends Enum<InternalLogLevel>
InternalLogger
can log at.Enum Constant and Description |
---|
DEBUG
'DEBUG' log level.
|
ERROR
'ERROR' log level.
|
INFO
'INFO' log level.
|
WARN
'WARN' log level.
|
Modifier and Type | Method and Description |
---|---|
static InternalLogLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InternalLogLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InternalLogLevel DEBUG
public static final InternalLogLevel INFO
public static final InternalLogLevel WARN
public static final InternalLogLevel ERROR
public static InternalLogLevel[] values()
for (InternalLogLevel c : InternalLogLevel.values()) System.out.println(c);
public static InternalLogLevel 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 © 2008-2014 The Netty Project. All Rights Reserved.