public enum EffectSpeed extends Enum<EffectSpeed>
Defines how much an Effect speeds.
Effect,
EffectBehavior| Modifier and Type | Method and Description |
|---|---|
String |
getJavaScriptStatement() |
static EffectSpeed |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EffectSpeed[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EffectSpeed SLOW
public static final EffectSpeed FAST
public static EffectSpeed[] values()
for (EffectSpeed c : EffectSpeed.values()) System.out.println(c);
public static EffectSpeed valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String getJavaScriptStatement()
Copyright © 2009-2012. All Rights Reserved.