public static enum DragonBattle.RespawnPhase extends Enum<DragonBattle.RespawnPhase>
Enum Constant and Description |
---|
END
The end of the respawn sequence.
|
NONE
No respawn is in progress.
|
PREPARING_TO_SUMMON_PILLARS
The crystal beams remain directed upwards.
|
START
The crystal beams are directed upwards into the sky.
|
SUMMONING_DRAGON
All crystals (including those from the pillars) are aimed towards the
sky.
|
SUMMONING_PILLARS
The crystal beams are directed from pillar to pillar, regenerating
their crystals if necessary.
|
Modifier and Type | Method and Description |
---|---|
static DragonBattle.RespawnPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DragonBattle.RespawnPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DragonBattle.RespawnPhase START
public static final DragonBattle.RespawnPhase PREPARING_TO_SUMMON_PILLARS
public static final DragonBattle.RespawnPhase SUMMONING_PILLARS
public static final DragonBattle.RespawnPhase SUMMONING_DRAGON
public static final DragonBattle.RespawnPhase END
public static final DragonBattle.RespawnPhase NONE
public static DragonBattle.RespawnPhase[] values()
for (DragonBattle.RespawnPhase c : DragonBattle.RespawnPhase.values()) System.out.println(c);
public static DragonBattle.RespawnPhase 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 © 2021. All rights reserved.