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