public enum CombatAssignmentType extends java.lang.Enum<CombatAssignmentType>
| Enum Constant and Description |
|---|
ASSAULT |
AVOID |
CAPTURE |
CONTROL |
DEFEND |
ENGAGE |
HARASS |
HEAVY_ESCORT |
IGNORE |
INTERCEPT |
LIGHT_ESCORT |
MEDIUM_ESCORT |
RALLY_CARRIER |
RALLY_CIVILIAN |
RALLY_FIGHTERS |
RALLY_STRIKE_FORCE |
RALLY_TASK_FORCE |
RECON |
REPAIR_AND_REFIT |
RETREAT |
SEARCH_AND_DESTROY |
STRIKE |
| Modifier and Type | Method and Description |
|---|---|
static CombatAssignmentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CombatAssignmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CombatAssignmentType RECON
public static final CombatAssignmentType CAPTURE
public static final CombatAssignmentType CONTROL
public static final CombatAssignmentType ASSAULT
public static final CombatAssignmentType ENGAGE
public static final CombatAssignmentType AVOID
public static final CombatAssignmentType IGNORE
public static final CombatAssignmentType DEFEND
public static final CombatAssignmentType RALLY_TASK_FORCE
public static final CombatAssignmentType RALLY_CARRIER
public static final CombatAssignmentType RALLY_CIVILIAN
public static final CombatAssignmentType RALLY_STRIKE_FORCE
public static final CombatAssignmentType RALLY_FIGHTERS
public static final CombatAssignmentType STRIKE
public static final CombatAssignmentType INTERCEPT
public static final CombatAssignmentType HARASS
public static final CombatAssignmentType LIGHT_ESCORT
public static final CombatAssignmentType MEDIUM_ESCORT
public static final CombatAssignmentType HEAVY_ESCORT
public static final CombatAssignmentType RETREAT
public static final CombatAssignmentType REPAIR_AND_REFIT
public static final CombatAssignmentType SEARCH_AND_DESTROY
public static CombatAssignmentType[] values()
for (CombatAssignmentType c : CombatAssignmentType.values()) System.out.println(c);
public static CombatAssignmentType 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