|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Horse.Variant> org.bukkit.entity.Horse.Variant
public static enum Horse.Variant
Represents the different types of horses that may exist.
Enum Constant Summary | |
---|---|
DONKEY
A donkey |
|
HORSE
A normal horse |
|
MULE
A mule |
|
SKELETON_HORSE
A skeleton horse |
|
UNDEAD_HORSE
An undead horse |
Method Summary | |
---|---|
static Horse.Variant |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Horse.Variant[] |
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 Horse.Variant HORSE
public static final Horse.Variant DONKEY
public static final Horse.Variant MULE
public static final Horse.Variant UNDEAD_HORSE
public static final Horse.Variant SKELETON_HORSE
Method Detail |
---|
public static Horse.Variant[] values()
for (Horse.Variant c : Horse.Variant.values()) System.out.println(c);
public static Horse.Variant 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
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |