public static enum CauldronLevelChangeEvent.ChangeReason extends Enum<CauldronLevelChangeEvent.ChangeReason>
| Enum Constant and Description | 
|---|
| ARMOR_WASHPlayer cleaning their armor. | 
| BANNER_WASHPlayer cleaning their banner. | 
| BOTTLE_EMPTYPlayer filling the cauldron by emptying their bottle. | 
| BOTTLE_FILLPlayer emptying the cauldron by filling their bottle. | 
| BUCKET_EMPTYPlayer filling the cauldron by emptying their bucket. | 
| BUCKET_FILLPlayer emptying the cauldron by filling their bucket. | 
| EVAPORATEEvaporating due to biome dryness. | 
| EXTINGUISHEntity being extinguished. | 
| UNKNOWNUnknown. | 
| Modifier and Type | Method and Description | 
|---|---|
| static CauldronLevelChangeEvent.ChangeReason | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static CauldronLevelChangeEvent.ChangeReason[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CauldronLevelChangeEvent.ChangeReason BUCKET_FILL
public static final CauldronLevelChangeEvent.ChangeReason BUCKET_EMPTY
public static final CauldronLevelChangeEvent.ChangeReason BOTTLE_FILL
public static final CauldronLevelChangeEvent.ChangeReason BOTTLE_EMPTY
public static final CauldronLevelChangeEvent.ChangeReason BANNER_WASH
public static final CauldronLevelChangeEvent.ChangeReason ARMOR_WASH
public static final CauldronLevelChangeEvent.ChangeReason EXTINGUISH
public static final CauldronLevelChangeEvent.ChangeReason EVAPORATE
public static final CauldronLevelChangeEvent.ChangeReason UNKNOWN
public static CauldronLevelChangeEvent.ChangeReason[] values()
for (CauldronLevelChangeEvent.ChangeReason c : CauldronLevelChangeEvent.ChangeReason.values()) System.out.println(c);
public static CauldronLevelChangeEvent.ChangeReason valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.