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 facilitateworldgeneration implementation. -
-
Uses of Chunk in org.bukkit
Methods in org.bukkit that return Chunk Modifier and Type Method Description @NotNull ChunkLocation. getChunk()Gets the chunk at the represented location@NotNull ChunkWorld. getChunkAt(int x, int z)Gets theChunkat the given coordinates@NotNull ChunkWorld. getChunkAt(@NotNull Block block)@NotNull ChunkWorld. getChunkAt(@NotNull Location location)@NotNull Chunk[]World. getLoadedChunks()Gets an array of all loadedChunksMethods 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 booleanWorld. isChunkLoaded(@NotNull Chunk chunk)Checks if the specifiedChunkis loadedvoidWorld. loadChunk(@NotNull Chunk chunk)Loads the specifiedChunk.booleanWorld. unloadChunk(@NotNull Chunk chunk)Safely unloads and saves theChunkat the specified coordinates -
Uses of Chunk in org.bukkit.block
Methods in org.bukkit.block that return Chunk Modifier and Type Method Description @NotNull ChunkBlock. getChunk()Gets the chunk which contains this block@NotNull ChunkBlockState. 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 ChunkChunkEvent. chunkMethods in org.bukkit.event.world that return Chunk Modifier and Type Method Description @NotNull ChunkChunkEvent. 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 voidBlockPopulator. populate(@NotNull World world, @NotNull Random random, @NotNull Chunk source)Populates an area of blocks at or around the given chunk.
-