public enum ParticleEffect extends Enum<ParticleEffect> implements WorldEffect
| Enum Constant and Description |
|---|
BONEMEAL_GROW |
BREAK_BLOCK |
BREAK_EYE_OF_ENDER |
BREAK_SPLASH_POTION |
END_GATEWAY_SPAWN |
ENDERDRAGON_FIREBALL_EXPLODE |
MOB_SPAWN |
SMOKE |
| Modifier and Type | Method and Description |
|---|---|
static ParticleEffect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParticleEffect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParticleEffect SMOKE
public static final ParticleEffect BREAK_BLOCK
public static final ParticleEffect BREAK_SPLASH_POTION
public static final ParticleEffect BREAK_EYE_OF_ENDER
public static final ParticleEffect MOB_SPAWN
public static final ParticleEffect BONEMEAL_GROW
public static final ParticleEffect ENDERDRAGON_FIREBALL_EXPLODE
public static final ParticleEffect END_GATEWAY_SPAWN
public static ParticleEffect[] values()
for (ParticleEffect c : ParticleEffect.values()) System.out.println(c);
public static ParticleEffect 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.