Package fr.royalpha.revenge.core.handler
Enum Particles
- java.lang.Object
-
- java.lang.Enum<Particles>
-
- fr.royalpha.revenge.core.handler.Particles
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Particles.RevengeParticle
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description int
getId()
java.lang.String
getName()
int
getOptionalParametersSize()
static Particles
getParticleByName(java.lang.String name)
static Particles
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Particles[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXPLOSION_NORMAL
public static final Particles EXPLOSION_NORMAL
-
EXPLOSION_LARGE
public static final Particles EXPLOSION_LARGE
-
EXPLOSION_HUGE
public static final Particles EXPLOSION_HUGE
-
FIREWORKS_SPARK
public static final Particles FIREWORKS_SPARK
-
WATER_BUBBLE
public static final Particles WATER_BUBBLE
-
WATER_SPLASH
public static final Particles WATER_SPLASH
-
WATER_WAKE
public static final Particles WATER_WAKE
-
SUSPENDED
public static final Particles SUSPENDED
-
SUSPENDED_DEPTH
public static final Particles SUSPENDED_DEPTH
-
CRIT
public static final Particles CRIT
-
CRIT_MAGIC
public static final Particles CRIT_MAGIC
-
SMOKE_NORMAL
public static final Particles SMOKE_NORMAL
-
SMOKE_LARGE
public static final Particles SMOKE_LARGE
-
SPELL
public static final Particles SPELL
-
SPELL_INSTANT
public static final Particles SPELL_INSTANT
-
SPELL_MOB
public static final Particles SPELL_MOB
-
SPELL_MOB_AMBIENT
public static final Particles SPELL_MOB_AMBIENT
-
SPELL_WITCH
public static final Particles SPELL_WITCH
-
DRIP_WATER
public static final Particles DRIP_WATER
-
DRIP_LAVA
public static final Particles DRIP_LAVA
-
VILLAGER_ANGRY
public static final Particles VILLAGER_ANGRY
-
VILLAGER_HAPPY
public static final Particles VILLAGER_HAPPY
-
TOWN_AURA
public static final Particles TOWN_AURA
-
NOTE
public static final Particles NOTE
-
PORTAL
public static final Particles PORTAL
-
ENCHANTMENT_TABLE
public static final Particles ENCHANTMENT_TABLE
-
FLAME
public static final Particles FLAME
-
LAVA
public static final Particles LAVA
-
FOOTSTEP
public static final Particles FOOTSTEP
-
CLOUD
public static final Particles CLOUD
-
REDSTONE
public static final Particles REDSTONE
-
SNOWBALL
public static final Particles SNOWBALL
-
SNOW_SHOVEL
public static final Particles SNOW_SHOVEL
-
SLIME
public static final Particles SLIME
-
HEART
public static final Particles HEART
-
BARRIER
public static final Particles BARRIER
-
ITEM_CRACK
public static final Particles ITEM_CRACK
-
BLOCK_CRACK
public static final Particles BLOCK_CRACK
-
BLOCK_DUST
public static final Particles BLOCK_DUST
-
WATER_DROP
public static final Particles WATER_DROP
-
ITEM_TAKE
public static final Particles ITEM_TAKE
-
MOB_APPEARANCE
public static final Particles MOB_APPEARANCE
-
DRAGON_BREATH
public static final Particles DRAGON_BREATH
-
END_ROD
public static final Particles END_ROD
-
DAMAGE_INDICATOR
public static final Particles DAMAGE_INDICATOR
-
SWEEP_ATTACK
public static final Particles SWEEP_ATTACK
-
FALLING_DUST
public static final Particles FALLING_DUST
-
-
Method Detail
-
values
public static Particles[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Particles valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getName
public java.lang.String getName()
-
getId
public int getId()
-
getOptionalParametersSize
public int getOptionalParametersSize()
-
getParticleByName
public static Particles getParticleByName(java.lang.String name)
-
-