Plex-FAWE/src/main/java/com/sk89q/worldedit/BiomeTypes.java

29 lines
505 B
Java
Raw Normal View History

package com.sk89q.worldedit;
import java.util.List;
public interface BiomeTypes {
/**
* Returns if a biome with the given name is available.
*
* @param name
* @return
*/
boolean has(String name);
/**
* Returns the biome type for the given name
*
* @return
*/
BiomeType get(String name) throws UnknownBiomeTypeException;
/**
* Returns a list of all available biome types.
*
* @return
*/
List<BiomeType> all();
}