public static enum Logger.LEVEL extends Enum<Logger.LEVEL>
Enum Constant and Description |
---|
ALL |
ERR |
INFO |
OFF |
TRC |
TRC2 |
TRC3 |
TRC4 |
TRC5 |
WARN |
Modifier and Type | Method and Description |
---|---|
static Logger.LEVEL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Logger.LEVEL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logger.LEVEL OFF
public static final Logger.LEVEL ERR
public static final Logger.LEVEL WARN
public static final Logger.LEVEL INFO
public static final Logger.LEVEL TRC
public static final Logger.LEVEL TRC2
public static final Logger.LEVEL TRC3
public static final Logger.LEVEL TRC4
public static final Logger.LEVEL TRC5
public static final Logger.LEVEL ALL
public static Logger.LEVEL[] values()
for (Logger.LEVEL c : Logger.LEVEL.values()) System.out.println(c);
public static Logger.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 2010-2018 Grey Software (Yusef Badri). All Rights Reserved.