Uses of Enum
org.bukkit.block.Biome

Packages that use 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.
  • Uses of Biome in org.bukkit

    Fields in org.bukkit with type parameters of type Biome
    Modifier and Type
    Field
    Description
    static final Registry<Biome>
    Registry.BIOME
    Server biomes.
    Methods in org.bukkit that return Biome
    Modifier and Type
    Method
    Description
    ChunkSnapshot.getBiome(int x, int z)
    Deprecated.
    biomes are now 3-dimensional
    ChunkSnapshot.getBiome(int x, int y, int z)
    Get biome at given coordinates
    RegionAccessor.getBiome(int x, int y, int z)
    Gets the Biome at the given coordinates.
    RegionAccessor.getBiome(Location location)
    Gets the Biome at the given Location.
    World.getBiome(int x, int z)
    Deprecated.
    biomes are now 3-dimensional
    Methods in org.bukkit with parameters of type Biome
    Modifier and Type
    Method
    Description
    boolean
    Chunk.contains(Biome biome)
    Tests if this chunk contains the specified biome.
    boolean
    ChunkSnapshot.contains(Biome biome)
    Tests if this chunk contains the specified biome.
    void
    RegionAccessor.setBiome(int x, int y, int z, Biome biome)
    Sets the Biome for the given block coordinates
    void
    RegionAccessor.setBiome(Location location, Biome biome)
    Sets the Biome at the given Location.
    void
    World.setBiome(int x, int z, Biome bio)
    Deprecated.
    biomes are now 3-dimensional
  • Uses of Biome in org.bukkit.block

    Methods in org.bukkit.block that return Biome
    Modifier and Type
    Method
    Description
    Block.getBiome()
    Returns the biome that this block resides in
    static Biome
    Biome.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    static Biome[]
    Biome.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in org.bukkit.block with parameters of type Biome
    Modifier and Type
    Method
    Description
    void
    Block.setBiome(Biome bio)
    Sets the biome that this block resides in
  • Uses of Biome in org.bukkit.generator

    Methods in org.bukkit.generator that return Biome
    Modifier and Type
    Method
    Description
    abstract Biome
    BiomeProvider.getBiome(WorldInfo worldInfo, int x, int y, int z)
    Return the Biome which should be present at the provided location.
    BiomeProvider.getBiome(WorldInfo worldInfo, int x, int y, int z, 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-dimensional
    ChunkGenerator.BiomeGrid.getBiome(int x, int y, int z)
    Deprecated.
    Get biome at x, z within chunk being generated
    ChunkGenerator.ChunkData.getBiome(int x, int y, int z)
    Get the biome at x, y, z within chunk being generated
    Methods in org.bukkit.generator that return types with arguments of type Biome
    Modifier and Type
    Method
    Description
    abstract List<Biome>
    BiomeProvider.getBiomes(WorldInfo worldInfo)
    Returns a list with every biome the BiomeProvider will use for the given world.
    Methods in org.bukkit.generator with parameters of type Biome
    Modifier and Type
    Method
    Description
    void
    ChunkGenerator.BiomeGrid.setBiome(int x, int y, int z, Biome bio)
    Deprecated.
    Set biome at x, z within chunk being generated
    void
    ChunkGenerator.BiomeGrid.setBiome(int x, int z, Biome bio)
    Deprecated.
    biomes are now 3-dimensional