Package com.starpoints.game
Enum DieReason
- java.lang.Object
-
- java.lang.Enum<DieReason>
-
- com.starpoints.game.DieReason
-
-
Enum Constant Summary
Enum Constants Enum Constant Description blackenedDeath by entering a hole.bombedDeath because of picking up bombs or exploding items.energylossEnergy losses caused by ItemEnergyLosses.exhaustedDestruction e.g. by being using upexplosionLoss by an explosion.grayedEnergy losses caused by gray points.noneNo value.overheatedLoss because of overheating.rammedLoss by ram attacks.rocketLoss by a directly hitting rocket.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DieReasonvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DieReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
rocket
public static final DieReason rocket
Loss by a directly hitting rocket.
-
explosion
public static final DieReason explosion
Loss by an explosion.
-
rammed
public static final DieReason rammed
Loss by ram attacks.
-
blackened
public static final DieReason blackened
Death by entering a hole.
-
exhausted
public static final DieReason exhausted
Destruction e.g. by being using up
-
energyloss
public static final DieReason energyloss
Energy losses caused by ItemEnergyLosses.
-
grayed
public static final DieReason grayed
Energy losses caused by gray points.
-
bombed
public static final DieReason bombed
Death because of picking up bombs or exploding items.
-
overheated
public static final DieReason overheated
Loss because of overheating.
-
none
public static final DieReason none
No value.
-
-
Method Detail
-
values
public static DieReason[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DieReason c : DieReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DieReason valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-