Package org.bukkit.event.block
Enum BlockIgniteEvent.IgniteCause
- All Implemented Interfaces:
Serializable
,Comparable<BlockIgniteEvent.IgniteCause>
,Constable
- Enclosing class:
- BlockIgniteEvent
public static enum BlockIgniteEvent.IgniteCause extends Enum<BlockIgniteEvent.IgniteCause>
An enum to specify the cause of the ignite
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description ARROW
Block ignition caused by a flaming arrow.ENDER_CRYSTAL
Block ignition caused by an Ender Crystal.EXPLOSION
Block ignition caused by explosion.FIREBALL
Block ignition caused by an entity using a fireball.FLINT_AND_STEEL
Block ignition caused by a player or dispenser using flint-and-steel.LAVA
Block ignition caused by lava.LIGHTNING
Block ignition caused by lightning.SPREAD
Block ignition caused by dynamic spreading of fire. -
Method Summary
Modifier and Type Method Description static BlockIgniteEvent.IgniteCause
valueOf(String name)
Returns the enum constant of this type with the specified name.static BlockIgniteEvent.IgniteCause[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
LAVA
Block ignition caused by lava. -
FLINT_AND_STEEL
Block ignition caused by a player or dispenser using flint-and-steel. -
SPREAD
Block ignition caused by dynamic spreading of fire. -
LIGHTNING
Block ignition caused by lightning. -
FIREBALL
Block ignition caused by an entity using a fireball. -
ENDER_CRYSTAL
Block ignition caused by an Ender Crystal. -
EXPLOSION
Block ignition caused by explosion. -
ARROW
Block ignition caused by a flaming arrow.
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException
- if the argument is null
-