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