Package org.bukkit.event.block
Enum BlockIgniteEvent.IgniteCause
- java.lang.Object
-
- java.lang.Enum<BlockIgniteEvent.IgniteCause>
-
- org.bukkit.event.block.BlockIgniteEvent.IgniteCause
-
- All Implemented Interfaces:
Serializable
,Comparable<BlockIgniteEvent.IgniteCause>
- Enclosing class:
- BlockIgniteEvent
public static enum BlockIgniteEvent.IgniteCause extends Enum<BlockIgniteEvent.IgniteCause>
An enum to specify the cause of the ignite
-
-
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
All Methods Static Methods Concrete Methods 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 Detail
-
LAVA
public static final BlockIgniteEvent.IgniteCause LAVA
Block ignition caused by lava.
-
FLINT_AND_STEEL
public static final BlockIgniteEvent.IgniteCause FLINT_AND_STEEL
Block ignition caused by a player or dispenser using flint-and-steel.
-
SPREAD
public static final BlockIgniteEvent.IgniteCause SPREAD
Block ignition caused by dynamic spreading of fire.
-
LIGHTNING
public static final BlockIgniteEvent.IgniteCause LIGHTNING
Block ignition caused by lightning.
-
FIREBALL
public static final BlockIgniteEvent.IgniteCause FIREBALL
Block ignition caused by an entity using a fireball.
-
ENDER_CRYSTAL
public static final BlockIgniteEvent.IgniteCause ENDER_CRYSTAL
Block ignition caused by an Ender Crystal.
-
EXPLOSION
public static final BlockIgniteEvent.IgniteCause EXPLOSION
Block ignition caused by explosion.
-
ARROW
public static final BlockIgniteEvent.IgniteCause ARROW
Block ignition caused by a flaming arrow.
-
-
Method Detail
-
values
public static BlockIgniteEvent.IgniteCause[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BlockIgniteEvent.IgniteCause c : BlockIgniteEvent.IgniteCause.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BlockIgniteEvent.IgniteCause valueOf(String name)
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
-
-