001 package org.bukkit;
002
003 /**
004 * An enum of all current weather types
005 */
006 public enum WeatherType {
007
008 /**
009 * Raining or snowing depending on biome.
010 */
011 DOWNFALL,
012 /**
013 * Clear weather, clouds but no rain.
014 */
015 CLEAR,
016 ;
017 }