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