java.io.Serializable, java.lang.Comparable<Deity.HolyEvent>public static enum Deity.HolyEvent extends java.lang.Enum<Deity.HolyEvent>
| Enum Constant | Description | 
|---|---|
| BLESSING | |
| CURSING | |
| DISAPPOINTED | |
| REBUKE | |
| SERVICE | |
| SERVICE_BEGIN | |
| SERVICE_CANCEL | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static Deity.HolyEvent | valueOf(java.lang.String name) | Returns the enum constant of this type with the specified name. | 
| static Deity.HolyEvent[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Deity.HolyEvent SERVICE_BEGIN
public static final Deity.HolyEvent SERVICE
public static final Deity.HolyEvent SERVICE_CANCEL
public static final Deity.HolyEvent CURSING
public static final Deity.HolyEvent BLESSING
public static final Deity.HolyEvent REBUKE
public static final Deity.HolyEvent DISAPPOINTED
public static Deity.HolyEvent[] values()
for (Deity.HolyEvent c : Deity.HolyEvent.values()) System.out.println(c);
public static Deity.HolyEvent 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