public enum DragonSpawnState extends java.lang.Enum<DragonSpawnState>
Enum Constant and Description |
---|
END |
PREPARING_TO_SUMMON_PILLARS |
START |
SUMMONING_DRAGON |
SUMMONING_PILLARS |
Modifier and Type | Method and Description |
---|---|
abstract void |
process(ServerWorld worldIn,
DragonFightManager manager,
java.util.List<EnderCrystalEntity> crystals,
int ticks,
BlockPos pos) |
static DragonSpawnState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DragonSpawnState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DragonSpawnState START
public static final DragonSpawnState PREPARING_TO_SUMMON_PILLARS
public static final DragonSpawnState SUMMONING_PILLARS
public static final DragonSpawnState SUMMONING_DRAGON
public static final DragonSpawnState END
public static DragonSpawnState[] values()
for (DragonSpawnState c : DragonSpawnState.values()) System.out.println(c);
public static DragonSpawnState 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 nullpublic abstract void process(ServerWorld worldIn, DragonFightManager manager, java.util.List<EnderCrystalEntity> crystals, int ticks, BlockPos pos)