public enum FiringType extends java.lang.Enum<FiringType>
Trigger firing.
Firings can be either early or late or default. Late triggers are not supported currently.| Modifier and Type | Method and Description |
|---|---|
static FiringType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FiringType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FiringType EARLY
public static final FiringType DEFAULT
public static final FiringType LATE
public static FiringType[] values()
for (FiringType c : FiringType.values()) System.out.println(c);
public static FiringType 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