| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<EntityEffect>
org.bukkit.EntityEffect
public enum EntityEffect
A list of all Effects that can happen to entities.
| Enum Constant Summary | |
|---|---|
| DEATHWhen a mob dies. | |
| HURTWhen mobs get hurt. | |
| SHEEP_EATWhen a sheep eats a LONG_GRASS block. | |
| WOLF_HEARTSThe hearts when taming a wolf succeeds. | |
| WOLF_SHAKEWhen a wolf shakes (after being wet). | |
| WOLF_SMOKEThe smoke when taming a wolf fails. | |
| 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 | 
|---|
public static final EntityEffect HURT
public static final EntityEffect DEATH
This will cause client-glitches!
public static final EntityEffect WOLF_SMOKE
Without client-mods this will be ignored if the entity is not a wolf.
public static final EntityEffect WOLF_HEARTS
Without client-mods this will be ignored if the entity is not a wolf.
public static final EntityEffect WOLF_SHAKE
Without client-mods this will be ignored if the entity is not a wolf.
public static final EntityEffect SHEEP_EAT
| Method Detail | 
|---|
public static EntityEffect[] values()
for (EntityEffect c : EntityEffect.values()) System.out.println(c);
public static EntityEffect valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null@Deprecated public byte getData()
@Deprecated public static EntityEffect getByData(byte data)
data - Data value to fetch
EntityEffect representing the given value, or null if it doesn't exist| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||