Uses of Enum Class
org.bukkit.block.Biome
Package
Description
The root package of the Bukkit API, contains generalized API classes.
Classes used to manipulate the voxels in a
world
,
including special states.Classes to facilitate
world
generation
implementation.Multi and single purpose classes to facilitate various programmatic
concepts.
-
Uses of Biome in io.papermc.paper.registry
Modifier and TypeFieldDescriptionstatic final RegistryKey
<Biome> RegistryKey.BIOME
Data-driven registry for biomes. -
Uses of Biome in io.papermc.paper.registry.keys
Modifier and TypeFieldDescriptionBiomeKeys.BADLANDS
minecraft:badlands
BiomeKeys.BAMBOO_JUNGLE
minecraft:bamboo_jungle
BiomeKeys.BASALT_DELTAS
minecraft:basalt_deltas
BiomeKeys.BEACH
minecraft:beach
BiomeKeys.BIRCH_FOREST
minecraft:birch_forest
BiomeKeys.CHERRY_GROVE
minecraft:cherry_grove
BiomeKeys.COLD_OCEAN
minecraft:cold_ocean
BiomeKeys.CRIMSON_FOREST
minecraft:crimson_forest
BiomeKeys.DARK_FOREST
minecraft:dark_forest
BiomeKeys.DEEP_COLD_OCEAN
minecraft:deep_cold_ocean
BiomeKeys.DEEP_DARK
minecraft:deep_dark
BiomeKeys.DEEP_FROZEN_OCEAN
minecraft:deep_frozen_ocean
BiomeKeys.DEEP_LUKEWARM_OCEAN
minecraft:deep_lukewarm_ocean
BiomeKeys.DEEP_OCEAN
minecraft:deep_ocean
BiomeKeys.DESERT
minecraft:desert
BiomeKeys.DRIPSTONE_CAVES
minecraft:dripstone_caves
BiomeKeys.END_BARRENS
minecraft:end_barrens
BiomeKeys.END_HIGHLANDS
minecraft:end_highlands
BiomeKeys.END_MIDLANDS
minecraft:end_midlands
BiomeKeys.ERODED_BADLANDS
minecraft:eroded_badlands
BiomeKeys.FLOWER_FOREST
minecraft:flower_forest
BiomeKeys.FOREST
minecraft:forest
BiomeKeys.FROZEN_OCEAN
minecraft:frozen_ocean
BiomeKeys.FROZEN_PEAKS
minecraft:frozen_peaks
BiomeKeys.FROZEN_RIVER
minecraft:frozen_river
BiomeKeys.GROVE
minecraft:grove
BiomeKeys.ICE_SPIKES
minecraft:ice_spikes
BiomeKeys.JAGGED_PEAKS
minecraft:jagged_peaks
BiomeKeys.JUNGLE
minecraft:jungle
BiomeKeys.LUKEWARM_OCEAN
minecraft:lukewarm_ocean
BiomeKeys.LUSH_CAVES
minecraft:lush_caves
BiomeKeys.MANGROVE_SWAMP
minecraft:mangrove_swamp
BiomeKeys.MEADOW
minecraft:meadow
BiomeKeys.MUSHROOM_FIELDS
minecraft:mushroom_fields
BiomeKeys.NETHER_WASTES
minecraft:nether_wastes
BiomeKeys.OCEAN
minecraft:ocean
BiomeKeys.OLD_GROWTH_BIRCH_FOREST
minecraft:old_growth_birch_forest
BiomeKeys.OLD_GROWTH_PINE_TAIGA
minecraft:old_growth_pine_taiga
BiomeKeys.OLD_GROWTH_SPRUCE_TAIGA
minecraft:old_growth_spruce_taiga
BiomeKeys.PLAINS
minecraft:plains
BiomeKeys.RIVER
minecraft:river
BiomeKeys.SAVANNA
minecraft:savanna
BiomeKeys.SAVANNA_PLATEAU
minecraft:savanna_plateau
BiomeKeys.SMALL_END_ISLANDS
minecraft:small_end_islands
BiomeKeys.SNOWY_BEACH
minecraft:snowy_beach
BiomeKeys.SNOWY_PLAINS
minecraft:snowy_plains
BiomeKeys.SNOWY_SLOPES
minecraft:snowy_slopes
BiomeKeys.SNOWY_TAIGA
minecraft:snowy_taiga
BiomeKeys.SOUL_SAND_VALLEY
minecraft:soul_sand_valley
BiomeKeys.SPARSE_JUNGLE
minecraft:sparse_jungle
BiomeKeys.STONY_PEAKS
minecraft:stony_peaks
BiomeKeys.STONY_SHORE
minecraft:stony_shore
BiomeKeys.SUNFLOWER_PLAINS
minecraft:sunflower_plains
BiomeKeys.SWAMP
minecraft:swamp
BiomeKeys.TAIGA
minecraft:taiga
BiomeKeys.THE_END
minecraft:the_end
BiomeKeys.THE_VOID
minecraft:the_void
BiomeKeys.WARM_OCEAN
minecraft:warm_ocean
BiomeKeys.WARPED_FOREST
minecraft:warped_forest
BiomeKeys.WINDSWEPT_FOREST
minecraft:windswept_forest
BiomeKeys.WINDSWEPT_GRAVELLY_HILLS
minecraft:windswept_gravelly_hills
BiomeKeys.WINDSWEPT_HILLS
minecraft:windswept_hills
BiomeKeys.WINDSWEPT_SAVANNA
minecraft:windswept_savanna
BiomeKeys.WOODED_BADLANDS
minecraft:wooded_badlands
-
Uses of Biome in org.bukkit
Modifier and TypeMethodDescriptionChunkSnapshot.getBiome
(int x, int z) Deprecated.biomes are now 3-dimensionalChunkSnapshot.getBiome
(int x, int y, int z) Get biome at given coordinatesRegionAccessor.getBiome
(int x, int y, int z) Gets theBiome
at the given coordinates.World.getBiome
(int x, int z) Deprecated.biomes are now 3-dimensionalRegionAccessor.getComputedBiome
(int x, int y, int z) Gets the computedBiome
at the given coordinates.Modifier and TypeMethodDescriptionboolean
Tests if this chunk contains the specified biome.boolean
Tests if this chunk contains the specified biome.World.locateNearestBiome
(@NotNull Location origin, int radius, int horizontalInterval, int verticalInterval, @NotNull Biome... biomes) Find the closest nearby location with a biome matching the providedBiome
(s).World.locateNearestBiome
(@NotNull Location origin, int radius, @NotNull Biome... biomes) Find the closest nearby location with a biome matching the providedBiome
(s).World.locateNearestBiome
(@NotNull Location origin, @NotNull Biome biome, int radius) Deprecated.World.locateNearestBiome
(@NotNull Location origin, @NotNull Biome biome, int radius, int step) Deprecated.void
Sets theBiome
for the given block coordinatesvoid
void
Deprecated.biomes are now 3-dimensional -
Uses of Biome in org.bukkit.block
Modifier and TypeMethodDescriptionBlock.getBiome()
Returns the biome that this block resides inBlock.getComputedBiome()
Gets the computed biome at the location of this Block.static Biome
Returns the enum constant of this class with the specified name.static Biome[]
Biome.values()
Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of Biome in org.bukkit.generator
Modifier and TypeMethodDescriptionReturn the Biome which should be present at the provided location.BiomeProvider.getBiome
(@NotNull WorldInfo worldInfo, int x, int y, int z, @NotNull BiomeParameterPoint biomeParameterPoint) Return the Biome which should be present at the provided location.ChunkGenerator.BiomeGrid.getBiome
(int x, int z) Deprecated.biomes are now 3-dimensionalChunkGenerator.BiomeGrid.getBiome
(int x, int y, int z) Deprecated.Get biome at x, z within chunk being generatedChunkGenerator.ChunkData.getBiome
(int x, int y, int z) Get the biome at x, y, z within chunk being generatedModifier and TypeMethodDescriptionReturns a list with every biome theBiomeProvider
will use for the given world. -
Uses of Biome in org.bukkit.util