public enum SoundEffect extends Enum<SoundEffect> implements WorldEffect
| Modifier and Type | Method and Description |
|---|---|
static SoundEffect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SoundEffect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SoundEffect BLOCK_DISPENSER_DISPENSE
public static final SoundEffect BLOCK_DISPENSER_FAIL
public static final SoundEffect BLOCK_DISPENSER_LAUNCH
public static final SoundEffect ENTITY_ENDEREYE_LAUNCH
public static final SoundEffect ENTITY_FIREWORK_SHOOT
public static final SoundEffect BLOCK_IRON_DOOR_OPEN
public static final SoundEffect BLOCK_WOODEN_DOOR_OPEN
public static final SoundEffect BLOCK_WOODEN_TRAPDOOR_OPEN
public static final SoundEffect BLOCK_FENCE_GATE_OPEN
public static final SoundEffect BLOCK_FIRE_EXTINGUISH
public static final SoundEffect RECORD
public static final SoundEffect BLOCK_IRON_DOOR_CLOSE
public static final SoundEffect BLOCK_WOODEN_DOOR_CLOSE
public static final SoundEffect BLOCK_WOODEN_TRAPDOOR_CLOSE
public static final SoundEffect BLOCK_FENCE_GATE_CLOSE
public static final SoundEffect ENTITY_GHAST_WARN
public static final SoundEffect ENTITY_GHAST_SHOOT
public static final SoundEffect ENTITY_ENDERDRAGON_SHOOT
public static final SoundEffect ENTITY_BLAZE_SHOOT
public static final SoundEffect ENTITY_ZOMBIE_ATTACK_DOOR_WOOD
public static final SoundEffect ENTITY_ZOMBIE_ATTACK_DOOR_IRON
public static final SoundEffect ENTITY_ZOMBIE_BREAK_DOOR_WOOD
public static final SoundEffect ENTITY_WITHER_BREAK_BLOCK
public static final SoundEffect ENTITY_WITHER_SPAWN
public static final SoundEffect ENTITY_WITHER_SHOOT
public static final SoundEffect ENTITY_BAT_TAKEOFF
public static final SoundEffect ENTITY_ZOMBIE_INFECT
public static final SoundEffect ENTITY_ZOMBIE_VILLAGER_CONVERTED
public static final SoundEffect ENTITY_ENDERDRAGON_DEATH
public static final SoundEffect BLOCK_ANVIL_DESTROY
public static final SoundEffect BLOCK_ANVIL_USE
public static final SoundEffect BLOCK_ANVIL_LAND
public static final SoundEffect BLOCK_PORTAL_TRAVEL
public static final SoundEffect BLOCK_CHORUS_FLOWER_GROW
public static final SoundEffect BLOCK_CHORUS_FLOWER_DEATH
public static final SoundEffect BLOCK_BREWING_STAND_BREW
public static final SoundEffect BLOCK_IRON_TRAPDOOR_CLOSE
public static final SoundEffect BLOCK_IRON_TRAPDOOR_OPEN
public static final SoundEffect ENTITY_ENDERDRAGON_GROWL
public static SoundEffect[] values()
for (SoundEffect c : SoundEffect.values()) System.out.println(c);
public static SoundEffect valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.