Package org.bukkit.event.block
Enum CauldronLevelChangeEvent.ChangeReason
java.lang.Object
java.lang.Enum<CauldronLevelChangeEvent.ChangeReason>
org.bukkit.event.block.CauldronLevelChangeEvent.ChangeReason
- All Implemented Interfaces:
- Serializable,- Comparable<CauldronLevelChangeEvent.ChangeReason>,- java.lang.constant.Constable
- Enclosing class:
- CauldronLevelChangeEvent
public static enum CauldronLevelChangeEvent.ChangeReason
extends Enum<CauldronLevelChangeEvent.ChangeReason>
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionPlayer cleaning their armor.Player cleaning their banner.Player filling the cauldron by emptying their bottle.Player emptying the cauldron by filling their bottle.Player filling the cauldron by emptying their bucket.Player emptying the cauldron by filling their bucket.Evaporating due to biome dryness.Entity being extinguished.Filling due to natural fluid sources, eg rain or dripstone.Player cleaning a shulker box.Unknown.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
BUCKET_FILLPlayer emptying the cauldron by filling their bucket.
- 
BUCKET_EMPTYPlayer filling the cauldron by emptying their bucket.
- 
BOTTLE_FILLPlayer emptying the cauldron by filling their bottle.
- 
BOTTLE_EMPTYPlayer filling the cauldron by emptying their bottle.
- 
BANNER_WASHPlayer cleaning their banner.
- 
ARMOR_WASHPlayer cleaning their armor.
- 
SHULKER_WASHPlayer cleaning a shulker box.
- 
EXTINGUISHEntity being extinguished.
- 
EVAPORATEEvaporating due to biome dryness.
- 
NATURAL_FILLFilling due to natural fluid sources, eg rain or dripstone.
- 
UNKNOWNUnknown.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-