public static enum Diagnostic.Level extends Enum<Diagnostic.Level>
Enum Constant and Description |
---|
ERROR
Error level.
|
INFO
Information level.
|
WARN
Warning level.
|
Modifier and Type | Method and Description |
---|---|
static Diagnostic.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Diagnostic.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Diagnostic.Level INFO
public static final Diagnostic.Level WARN
public static final Diagnostic.Level ERROR
public static Diagnostic.Level[] values()
for (Diagnostic.Level c : Diagnostic.Level.values()) System.out.println(c);
public static Diagnostic.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 © 2011–2019 Asakusa Framework Team. All rights reserved.