Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
ChunkSnapshot.java
Go to the documentation of this file.
1 package org.bukkit;
2 
3 import org.bukkit.block.Biome;
4 
9 public interface ChunkSnapshot {
10 
16  int getX();
17 
23  int getZ();
24 
30  String getWorldName();
31 
40  int getBlockTypeId(int x, int y, int z);
41 
50  int getBlockData(int x, int y, int z);
51 
60  int getBlockSkyLight(int x, int y, int z);
61 
70  int getBlockEmittedLight(int x, int y, int z);
71 
79  int getHighestBlockYAt(int x, int z);
80 
88  Biome getBiome(int x, int z);
89 
97  double getRawBiomeTemperature(int x, int z);
98 
106  double getRawBiomeRainfall(int x, int z);
107 
113  long getCaptureFullTime();
114 
120  boolean isSectionEmpty(int sy);
121 }