|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<CombatLibrary.CombatSystem>
com.planet_ink.coffee_mud.Libraries.interfaces.CombatLibrary.CombatSystem
public static enum CombatLibrary.CombatSystem
An enumeration of the several combat systems. These are specified in the coffeemud.ini file.
Enum Constant Summary | |
---|---|
DEFAULT
The default system allows one action point to be used by each combatant on a skill, per round. |
|
MANUAL
The manual system allows all action points to be used by each combatant on skills or on basic attacks, but all attack must be manually entered. |
|
QUEUE
The queue system allows all action points to be used by each combatant on skills. |
|
TURNBASED
The turn based system gives each combatant an amount of time to use all their action points on skills or basic attacks, not permitting any other combatant to act until the previous one completes. |
Method Summary | |
---|---|
static CombatLibrary.CombatSystem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CombatLibrary.CombatSystem[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CombatLibrary.CombatSystem DEFAULT
public static final CombatLibrary.CombatSystem QUEUE
public static final CombatLibrary.CombatSystem MANUAL
public static final CombatLibrary.CombatSystem TURNBASED
Method Detail |
---|
public static CombatLibrary.CombatSystem[] values()
for (CombatLibrary.CombatSystem c : CombatLibrary.CombatSystem.values()) System.out.println(c);
public static CombatLibrary.CombatSystem 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |