org.bukkit.event.block
Enum BlockIgniteEvent.IgniteCause

java.lang.Object
  extended by java.lang.Enum<BlockIgniteEvent.IgniteCause>
      extended by 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
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
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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.

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 name
NullPointerException - if the argument is null


Copyright © 2014. All rights reserved.