public static enum ChunkFactory.Stage extends java.lang.Enum<ChunkFactory.Stage>
| Enum Constant and Description | 
|---|
| BLOCK_PROPERTIESCalculating and propagating block properties such as lighting and leaf distances. | 
| BORDER_CHUNKSCreating border or wall chunks (including layers but excluding post-processing). | 
| DISK_WRITINGSaving the generated chunks to disk. | 
| FIXUPSApplying region-straddling layers along region boundaries, not differentiated by layer. | 
| POST_PROCESSINGPost-processing the generated chunks (including border and wall chunks). | 
| SEEDSExporting the  Gardenseeds. | 
| TERRAIN_GENERATIONCreating the chunk and generating terrain and water or lava (excluding border and wall chunks). | 
| Modifier and Type | Method and Description | 
|---|---|
| static ChunkFactory.Stage | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ChunkFactory.Stage[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ChunkFactory.Stage TERRAIN_GENERATION
public static final ChunkFactory.Stage POST_PROCESSING
public static final ChunkFactory.Stage BORDER_CHUNKS
public static final ChunkFactory.Stage SEEDS
Garden seeds.public static final ChunkFactory.Stage BLOCK_PROPERTIES
public static final ChunkFactory.Stage DISK_WRITING
public static final ChunkFactory.Stage FIXUPS
public static ChunkFactory.Stage[] values()
for (ChunkFactory.Stage c : ChunkFactory.Stage.values()) System.out.println(c);
public static ChunkFactory.Stage 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 null