JavaScript is disabled on your browser.
Enum Constant Summary
Enum Constants
Method Summary
All Methods Static Methods Instance Methods Concrete Methods
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
NOTE_SNARE
public static final Sound NOTE_SNARE
NOTE_HAT
public static final Sound NOTE_HAT
NOTE_CLICK
public static final Sound NOTE_CLICK
NOTE_HARP
public static final Sound NOTE_HARP
NOTE_BASS_ATTACK
public static final Sound NOTE_BASS_ATTACK
PISTON_OUT
public static final Sound PISTON_OUT
PISTON_IN
public static final Sound PISTON_IN
CHEST_OPEN
public static final Sound CHEST_OPEN
CHEST_CLOSE
public static final Sound CHEST_CLOSE
RANDOM_FUSE
public static final Sound RANDOM_FUSE
RANDOM_EXPLODE
public static final Sound RANDOM_EXPLODE
RANDOM_BOW
public static final Sound RANDOM_BOW
MOB_ZOMBIE
public static final Sound MOB_ZOMBIE
MOB_HUMAN_HURT
public static final Sound MOB_HUMAN_HURT
MOB_ZOMBIE_HURT
public static final Sound MOB_ZOMBIE_HURT
MOB_ZOMBIE_DEATH
public static final Sound MOB_ZOMBIE_DEATH
MOB_PIG_ZOMBIE
public static final Sound MOB_PIG_ZOMBIE
MOB_PIG_ZOMBIE_HURT
public static final Sound MOB_PIG_ZOMBIE_HURT
MOB_PIG_ZOMBIE_DEATH
public static final Sound MOB_PIG_ZOMBIE_DEATH
MOB_SPIDER
public static final Sound MOB_SPIDER
MOB_SPIDER_DEATH
public static final Sound MOB_SPIDER_DEATH
MOB_CREEPER
public static final Sound MOB_CREEPER
MOB_CREEPER_DEATH
public static final Sound MOB_CREEPER_DEATH
MOB_SKELETON
public static final Sound MOB_SKELETON
MOB_SKELETON_HURT
public static final Sound MOB_SKELETON_HURT
MOB_SKELETON_DEATH
public static final Sound MOB_SKELETON_DEATH
MOB_ENDERMEN
public static final Sound MOB_ENDERMEN
MOB_ENDERMEN_HURT
public static final Sound MOB_ENDERMEN_HURT
MOB_ENDERMEN_DEATH
public static final Sound MOB_ENDERMEN_DEATH
MOB_BLAZE
public static final Sound MOB_BLAZE
MOB_BLAZE_HURT
public static final Sound MOB_BLAZE_HURT
MOB_BLAZE_DEATH
public static final Sound MOB_BLAZE_DEATH
MOB_GHAST
public static final Sound MOB_GHAST
MOB_GHAST_HURT
public static final Sound MOB_GHAST_HURT
MOB_GHAST_DEATH
public static final Sound MOB_GHAST_DEATH
MOB_SILVERFISH
public static final Sound MOB_SILVERFISH
MOB_SILVERFISH_HURT
public static final Sound MOB_SILVERFISH_HURT
MOB_SILVERFISH_DEATH
public static final Sound MOB_SILVERFISH_DEATH
MOB_CAT
public static final Sound MOB_CAT
MOB_CAT_HURT
public static final Sound MOB_CAT_HURT
MOB_CAT_PURREOW
public static final Sound MOB_CAT_PURREOW
MOB_CAT_MEOW
public static final Sound MOB_CAT_MEOW
MOB_IRON_GOLEM_HURT
public static final Sound MOB_IRON_GOLEM_HURT
MOB_IRON_GOLEM_DEATH
public static final Sound MOB_IRON_GOLEM_DEATH
MOB_WOLF
public static final Sound MOB_WOLF
MOB_WOLF_HURT
public static final Sound MOB_WOLF_HURT
MOB_WOLF_DEATH
public static final Sound MOB_WOLF_DEATH
MOB_WOLF_GROWL
public static final Sound MOB_WOLF_GROWL
MOB_WOLF_WHINE
public static final Sound MOB_WOLF_WHINE
MOB_WOLF_PANTING
public static final Sound MOB_WOLF_PANTING
MOB_SHEEP
public static final Sound MOB_SHEEP
MOB_PIG
public static final Sound MOB_PIG
MOB_PIG_DEATH
public static final Sound MOB_PIG_DEATH
MOB_COW
public static final Sound MOB_COW
MOB_COW_HURT
public static final Sound MOB_COW_HURT
MOB_CHICKEN
public static final Sound MOB_CHICKEN
MOB_CHICKEN_HURT
public static final Sound MOB_CHICKEN_HURT
MOB_SLIME
public static final Sound MOB_SLIME
MOB_MAGMACUBE_SMALL
public static final Sound MOB_MAGMACUBE_SMALL
MOB_VILLAGER
public static final Sound MOB_VILLAGER
MOB_VILLAGER_HURT
public static final Sound MOB_VILLAGER_HURT
MOB_VILLAGER_DEATH
public static final Sound MOB_VILLAGER_DEATH
NO_SOUND
public static final Sound NO_SOUND
Method Details
values
public static Sound [] values ()
Returns an array containing the constants of this enum class, in
the order they are declared.
Returns:
an array containing the constants of this enum class, in the order they are declared
valueOf
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (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 class has no constant with the specified name
NullPointerException - if the argument is null