public static enum BeliefEvent.Action extends java.lang.Enum<BeliefEvent.Action>
| Enum Constant and Description |
|---|
BELIEF_ADDED |
BELIEF_REMOVED |
BELIEF_SET_VALUE_ADDED |
BELIEF_SET_VALUE_REMOVED |
BELIEF_UPDATED |
| Modifier and Type | Method and Description |
|---|---|
static BeliefEvent.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BeliefEvent.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeliefEvent.Action BELIEF_ADDED
public static final BeliefEvent.Action BELIEF_REMOVED
public static final BeliefEvent.Action BELIEF_SET_VALUE_ADDED
public static final BeliefEvent.Action BELIEF_SET_VALUE_REMOVED
public static final BeliefEvent.Action BELIEF_UPDATED
public static BeliefEvent.Action[] values()
for (BeliefEvent.Action c : BeliefEvent.Action.values()) System.out.println(c);
public static BeliefEvent.Action 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