public enum MessageType extends java.lang.Enum<MessageType> implements java.io.Serializable
Enum Constant and Description |
---|
ABORT
The abort.
|
ADD_TO_TREE
The add to tree.
|
AGENT
The agent.
|
BAD_PROPOSITION
The bad proposition.
|
BESTCONTEXT
The bestcontext.
|
CHANGE
The change.
|
INSTABLE
The instable.
|
KILL
The kill.
|
PROPOSAL
The proposal.
|
REGISTER
The register.
|
REMOVE_FROM_TREE
The remove from tree.
|
SELECTION
The selection.
|
STABLE
The stable.
|
UNREGISTER
The unregister.
|
VALIDATE
The validate.
|
VALUE
The value.
|
Modifier and Type | Method and Description |
---|---|
static MessageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageType VALUE
public static final MessageType AGENT
public static final MessageType PROPOSAL
public static final MessageType REGISTER
public static final MessageType BAD_PROPOSITION
public static final MessageType SELECTION
public static final MessageType KILL
public static final MessageType INSTABLE
public static final MessageType STABLE
public static final MessageType ADD_TO_TREE
public static final MessageType REMOVE_FROM_TREE
public static final MessageType BESTCONTEXT
public static final MessageType CHANGE
public static final MessageType VALIDATE
public static final MessageType UNREGISTER
public static final MessageType ABORT
public static MessageType[] values()
for (MessageType c : MessageType.values()) System.out.println(c);
public static MessageType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null