public static enum EvalPayload.MessageType extends Enum<EvalPayload.MessageType>
| Enum Constant and Description |
|---|
error
Expression cannot be handled will be rejected.
|
info
Informational notices that are primarily to aide in debugging.
|
warn
Notifies the user of something that went wrong or that they should change, but that
is not causing an immediate problem.
|
| Modifier and Type | Method and Description |
|---|---|
static EvalPayload.MessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvalPayload.MessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvalPayload.MessageType info
public static final EvalPayload.MessageType warn
public static final EvalPayload.MessageType error
public static EvalPayload.MessageType[] values()
for (EvalPayload.MessageType c : EvalPayload.MessageType.values()) System.out.println(c);
public static EvalPayload.MessageType 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 null