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