public static enum Announce.Level extends Enum<Announce.Level>
| Enum Constant and Description |
|---|
DEBUG |
DETAILMESSAGES |
DETAILSTATE |
ERROR |
MESSAGES |
MUTE |
STATE |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static Announce.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Announce.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Announce.Level MUTE
public static final Announce.Level ERROR
public static final Announce.Level WARNING
public static final Announce.Level STATE
public static final Announce.Level MESSAGES
public static final Announce.Level DETAILSTATE
public static final Announce.Level DETAILMESSAGES
public static final Announce.Level DEBUG
public static Announce.Level[] values()
for (Announce.Level c : Announce.Level.values()) System.out.println(c);
public static Announce.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 © 2018. All rights reserved.