public static enum Message.Status extends Enum<Message.Status>
| Enum Constant and Description |
|---|
CERTAIN
The situation definitely occurs in all executions of the instruction.
|
INFO
Informational.
|
MAYBE
The situation may occur in some executions of the instruction.
|
NONE
The situation does not occur in any execution of the instruction.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Message.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Message.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Message.Status CERTAIN
public static final Message.Status INFO
public static final Message.Status MAYBE
public static final Message.Status NONE
public String toString()
toString in class Enum<Message.Status>public static Message.Status 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 nullpublic static Message.Status[] values()
for (Message.Status c : Message.Status.values()) System.out.println(c);
Copyright © 2012 Aarhus University