org.bukkit
Enum EntityEffect

java.lang.Object
  extended by java.lang.Enum<EntityEffect>
      extended by org.bukkit.EntityEffect
All Implemented Interfaces:
Serializable, Comparable<EntityEffect>

public enum EntityEffect
extends Enum<EntityEffect>

A list of all Effects that can happen to entities.


Enum Constant Summary
DEATH
          When a mob dies.
FIREWORK_EXPLODE
          When a firework explodes.
HURT
          When mobs get hurt.
IRON_GOLEM_ROSE
          When an Iron Golem gives a rose.
SHEEP_EAT
          When a sheep eats a LONG_GRASS block.
VILLAGER_ANGRY
          When a villager is angry.
VILLAGER_HAPPY
          Happy particles from a villager.
VILLAGER_HEART
          Hearts from a villager.
WITCH_MAGIC
          Magic particles from a witch.
WOLF_HEARTS
          The hearts when taming a wolf succeeds.
WOLF_SHAKE
          When a wolf shakes (after being wet).
WOLF_SMOKE
          The smoke when taming a wolf fails.
ZOMBIE_TRANSFORM
          When a zombie transforms into a villager by shaking violently.
 
Method Summary
static EntityEffect getByData(byte data)
          Deprecated. Magic value
 byte getData()
          Deprecated. Magic value
static EntityEffect valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EntityEffect[] 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

HURT

public static final EntityEffect HURT
When mobs get hurt.


DEATH

public static final EntityEffect DEATH
When a mob dies.

This will cause client-glitches!


WOLF_SMOKE

public static final EntityEffect WOLF_SMOKE
The smoke when taming a wolf fails.

Without client-mods this will be ignored if the entity is not a wolf.


WOLF_HEARTS

public static final EntityEffect WOLF_HEARTS
The hearts when taming a wolf succeeds.

Without client-mods this will be ignored if the entity is not a wolf.


WOLF_SHAKE

public static final EntityEffect WOLF_SHAKE
When a wolf shakes (after being wet).

Without client-mods this will be ignored if the entity is not a wolf.


SHEEP_EAT

public static final EntityEffect SHEEP_EAT
When a sheep eats a LONG_GRASS block.


IRON_GOLEM_ROSE

public static final EntityEffect IRON_GOLEM_ROSE
When an Iron Golem gives a rose.

This will not play an effect if the entity is not an iron golem.


VILLAGER_HEART

public static final EntityEffect VILLAGER_HEART
Hearts from a villager.

This will not play an effect if the entity is not a villager.


VILLAGER_ANGRY

public static final EntityEffect VILLAGER_ANGRY
When a villager is angry.

This will not play an effect if the entity is not a villager.


VILLAGER_HAPPY

public static final EntityEffect VILLAGER_HAPPY
Happy particles from a villager.

This will not play an effect if the entity is not a villager.


WITCH_MAGIC

public static final EntityEffect WITCH_MAGIC
Magic particles from a witch.

This will not play an effect if the entity is not a witch.


ZOMBIE_TRANSFORM

public static final EntityEffect ZOMBIE_TRANSFORM
When a zombie transforms into a villager by shaking violently.

This will not play an effect if the entity is not a zombie.


FIREWORK_EXPLODE

public static final EntityEffect FIREWORK_EXPLODE
When a firework explodes.

This will not play an effect if the entity is not a firework.

Method Detail

values

public static EntityEffect[] 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 (EntityEffect c : EntityEffect.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static EntityEffect 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

getData

@Deprecated
public byte getData()
Deprecated. Magic value

Gets the data value of this EntityEffect

Returns:
The data value

getByData

@Deprecated
public static EntityEffect getByData(byte data)
Deprecated. Magic value

Gets the EntityEffect with the given data value

Parameters:
data - Data value to fetch
Returns:
The EntityEffect representing the given value, or null if it doesn't exist


Copyright © 2014. All rights reserved.