public static enum HazardConstants.EffectOnStrike extends java.lang.Enum<HazardConstants.EffectOnStrike>
Enum Constant and Description |
---|
BLOCKED |
NOEFFECT |
POWERBONUS |
POWERPENALTY |
SKILLBONUS |
SKILLPENALTY |
Modifier and Type | Method and Description |
---|---|
static HazardConstants.EffectOnStrike |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HazardConstants.EffectOnStrike[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HazardConstants.EffectOnStrike SKILLBONUS
public static final HazardConstants.EffectOnStrike SKILLPENALTY
public static final HazardConstants.EffectOnStrike POWERBONUS
public static final HazardConstants.EffectOnStrike POWERPENALTY
public static final HazardConstants.EffectOnStrike BLOCKED
public static final HazardConstants.EffectOnStrike NOEFFECT
public static HazardConstants.EffectOnStrike[] values()
for (HazardConstants.EffectOnStrike c : HazardConstants.EffectOnStrike.values()) System.out.println(c);
public static HazardConstants.EffectOnStrike 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