| Package | Description | 
|---|---|
| org.bukkit | 
 The root package of the Bukkit API, contains generalized API classes. 
 | 
| org.bukkit.generator | 
 Classes to facilitate  
world generation
 implementation. | 
| Modifier and Type | Method and Description | 
|---|---|
ChunkGenerator.ChunkData | 
Server.createChunkData(@NotNull World world)
Create a ChunkData for use in a generator. 
 | 
static ChunkGenerator.ChunkData | 
Bukkit.createChunkData(@NotNull World world)
Create a ChunkData for use in a generator. 
 | 
ChunkGenerator.ChunkData | 
Server.createVanillaChunkData(@NotNull World world,
                      int x,
                      int z)
Create a ChunkData for use in a generator, that is populated by the vanilla generator for that world 
 | 
static ChunkGenerator.ChunkData | 
Bukkit.createVanillaChunkData(@NotNull World world,
                      int x,
                      int z)
Create a ChunkData for use in a generator, that is populated by the vanilla generator for that world 
 | 
| Modifier and Type | Method and Description | 
|---|---|
protected @NotNull ChunkGenerator.ChunkData | 
ChunkGenerator.createChunkData(@NotNull World world)
Create a ChunkData for a world. 
 | 
@NotNull ChunkGenerator.ChunkData | 
ChunkGenerator.createVanillaChunkData(@NotNull World world,
                      int x,
                      int z)
Create a ChunkData for use in a generator, that is populated by the vanilla generator for that world 
 | 
@NotNull ChunkGenerator.ChunkData | 
ChunkGenerator.generateChunkData(@NotNull World world,
                 @NotNull Random random,
                 int x,
                 int z,
                 @NotNull ChunkGenerator.BiomeGrid biome)
Shapes the chunk for the given coordinates. 
 | 
Copyright © 2022. All rights reserved.