public static enum Status.Level extends Enum<Status.Level>
| Modifier and Type | Method and Description |
|---|---|
static Status.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status.Level WARNING
public static final Status.Level ERROR
public static final Status.Level OK
public static Status.Level[] values()
for (Status.Level c : Status.Level.values()) System.out.println(c);
public static Status.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 © 2017. All Rights Reserved.