Package org.bukkit.generator
Interface WorldInfo
- All Known Subinterfaces:
- World
public interface WorldInfo
Holds various information of a World
- 
Method SummaryModifier and TypeMethodDescriptionGets theWorld.Environmenttype of this worldintGets the maximum height of this world.intGets the minimum height of this world.getName()Gets the unique name of this worldlonggetSeed()Gets the Seed for this world.getUID()Gets the Unique ID of this world
- 
Method Details- 
getNameGets the unique name of this world- Returns:
- Name of this world
 
- 
getUIDGets the Unique ID of this world- Returns:
- Unique ID of this world.
 
- 
getEnvironmentGets theWorld.Environmenttype of this world- Returns:
- This worlds Environment type
 
- 
getSeedlong getSeed()Gets the Seed for this world.- Returns:
- This worlds Seed
 
- 
getMinHeightint getMinHeight()Gets the minimum height of this world.If the min height is 0, there are only blocks from y=0. - Returns:
- Minimum height of the world
 
- 
getMaxHeightint getMaxHeight()Gets the maximum height of this world.If the max height is 100, there are only blocks from y=0 to y=99. - Returns:
- Maximum height of the world
 
 
-