Uses of Interface
org.bukkit.Chunk
-
Packages that use Chunk Package Description org.bukkit The root package of the Bukkit API, contains generalized API classes.org.bukkit.block Classes used to manipulate the voxels in aworld
, including special states.org.bukkit.event.world org.bukkit.generator Classes to facilitateworld
generation implementation. -
-
Uses of Chunk in org.bukkit
Methods in org.bukkit that return Chunk Modifier and Type Method Description @NotNull Chunk
Location. getChunk()
Gets the chunk at the represented location@NotNull Chunk
World. getChunkAt(int x, int z)
Gets theChunk
at the given coordinates@NotNull Chunk
World. getChunkAt(@NotNull Block block)
@NotNull Chunk
World. getChunkAt(@NotNull Location location)
@NotNull Chunk[]
World. getLoadedChunks()
Gets an array of all loadedChunk
sMethods in org.bukkit that return types with arguments of type Chunk Modifier and Type Method Description @NotNull Collection<Chunk>
World. getForceLoadedChunks()
Returns all force loaded chunks in this world.@NotNull Map<Plugin,Collection<Chunk>>
World. getPluginChunkTickets()
Returns a map of which plugins have tickets for what chunks.Methods in org.bukkit with parameters of type Chunk Modifier and Type Method Description boolean
World. isChunkLoaded(@NotNull Chunk chunk)
Checks if the specifiedChunk
is loadedvoid
World. loadChunk(@NotNull Chunk chunk)
Loads the specifiedChunk
.boolean
World. unloadChunk(@NotNull Chunk chunk)
Safely unloads and saves theChunk
at the specified coordinates -
Uses of Chunk in org.bukkit.block
Methods in org.bukkit.block that return Chunk Modifier and Type Method Description @NotNull Chunk
Block. getChunk()
Gets the chunk which contains this block@NotNull Chunk
BlockState. getChunk()
Gets the chunk which contains the block represented by this block state. -
Uses of Chunk in org.bukkit.event.world
Fields in org.bukkit.event.world declared as Chunk Modifier and Type Field Description protected Chunk
ChunkEvent. chunk
Methods in org.bukkit.event.world that return Chunk Modifier and Type Method Description @NotNull Chunk
ChunkEvent. getChunk()
Gets the chunk being loaded/unloadedConstructors in org.bukkit.event.world with parameters of type Chunk Constructor Description ChunkEvent(@NotNull Chunk chunk)
ChunkLoadEvent(@NotNull Chunk chunk, boolean newChunk)
ChunkPopulateEvent(@NotNull Chunk chunk)
ChunkUnloadEvent(@NotNull Chunk chunk)
ChunkUnloadEvent(@NotNull Chunk chunk, boolean save)
-
Uses of Chunk in org.bukkit.generator
Methods in org.bukkit.generator with parameters of type Chunk Modifier and Type Method Description abstract void
BlockPopulator. populate(@NotNull World world, @NotNull Random random, @NotNull Chunk source)
Populates an area of blocks at or around the given chunk.
-