Uses of Enum
com.welcome234.pluginsystem.Biome

Packages that use Biome
Package
Description
This is the main package of the API, containing general classes
  • Uses of Biome in com.welcome234.pluginsystem

    Methods in com.welcome234.pluginsystem that return Biome
    Modifier and Type
    Method
    Description
    Chunk.getBiome​(int x)
    Gets the current biome for the specified chunk coordinates.
    static Biome
    World.getBiome​(int x, boolean endDimension)
    Gets the current biome for the specified coordinate and dimension.
    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 com.welcome234.pluginsystem with parameters of type Biome
    Modifier and Type
    Method
    Description
    void
    Chunk.setBiome​(int x, Biome biome)
    Sets the current biome for the specified chunk coordinates.
    static void
    World.setBiome​(int x, boolean endDimension, Biome biome)
    Sets the current biome for the specified coordinate and dimension.