public enum DamageType extends Enum<DamageType>
This corresponds with UnitSizeType to determine the damage done to a unit.
Enum Constant and Description |
---|
Concussive |
Explosive |
Ignore_Armor |
Independent |
None |
Normal |
Unknown |
Modifier and Type | Method and Description |
---|---|
static DamageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DamageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DamageType Independent
public static final DamageType Explosive
public static final DamageType Concussive
public static final DamageType Normal
public static final DamageType Ignore_Armor
public static final DamageType None
public static final DamageType Unknown
public static DamageType[] values()
for (DamageType c : DamageType.values()) System.out.println(c);
public static DamageType 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 nullCopyright © 2022. All rights reserved.