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