public enum UESCastState extends java.lang.Enum<UESCastState>
| Enum Constant and Description |
|---|
ACTIVE
Active cast.
|
PASSIVE
Passive cast.
|
| Modifier and Type | Method and Description |
|---|---|
static UESCastState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UESCastState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
ACTIVE.PASSIVE.for (UESCastState c : UESCastState.values()) System.out.println(c);
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