public static enum Message.Kind extends Enum<Message.Kind>
Message
objects.Enum Constant and Description |
---|
error |
failure |
hint |
log |
logEnd |
logStart |
warning |
Modifier and Type | Field and Description |
---|---|
boolean |
isCritical
|
Modifier and Type | Method and Description |
---|---|
static Message.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Message.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Message.Kind log
public static final Message.Kind logStart
public static final Message.Kind logEnd
public static final Message.Kind hint
public static final Message.Kind warning
public static final Message.Kind error
public static final Message.Kind failure
public static Message.Kind[] values()
for (Message.Kind c : Message.Kind.values()) System.out.println(c);
public static Message.Kind 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 nullsee also the complete user documentation .