Package net.minecraft.util
Enum EnumParticleTypes
- java.lang.Object
-
- java.lang.Enum<EnumParticleTypes>
-
- net.minecraft.util.EnumParticleTypes
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EnumParticleTypes>
public enum EnumParticleTypes extends java.lang.Enum<EnumParticleTypes>
+ This portion of EaglercraftX contains deobfuscated Minecraft 1.8 source code. Minecraft 1.8.8 bytecode is (c) 2015 Mojang AB. "Do not distribute!" Mod Coder Pack v9.18 deobfuscation configs are (c) Copyright by the MCP Team EaglercraftX 1.8 patch files are (c) 2022-2023 LAX1DUDE. All Rights Reserved. WITH THE EXCEPTION OF PATCH FILES, MINIFIED JAVASCRIPT, AND ALL FILES NORMALLY FOUND IN AN UNMODIFIED MINECRAFT RESOURCE PACK, YOU ARE NOT ALLOWED TO SHARE, DISTRIBUTE, OR REPURPOSE ANY FILE USED BY OR PRODUCED BY THE SOFTWARE IN THIS REPOSITORY WITHOUT PRIOR PERMISSION FROM THE PROJECT AUTHOR. NOT FOR COMMERCIAL OR MALICIOUS USE (please read the 'LICENSE' file this repo's root directory for more info)
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getArgumentCount()
static EnumParticleTypes
getParticleFromId(int particleId)
+ Gets the relative EnumParticleTypes by id.int
getParticleID()
java.lang.String
getParticleName()
static java.lang.String[]
getParticleNames()
boolean
getShouldIgnoreRange()
boolean
hasArguments()
static EnumParticleTypes
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EnumParticleTypes[]
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 EnumParticleTypes EXPLOSION_NORMAL
-
EXPLOSION_LARGE
public static final EnumParticleTypes EXPLOSION_LARGE
-
EXPLOSION_HUGE
public static final EnumParticleTypes EXPLOSION_HUGE
-
FIREWORKS_SPARK
public static final EnumParticleTypes FIREWORKS_SPARK
-
WATER_BUBBLE
public static final EnumParticleTypes WATER_BUBBLE
-
WATER_SPLASH
public static final EnumParticleTypes WATER_SPLASH
-
WATER_WAKE
public static final EnumParticleTypes WATER_WAKE
-
SUSPENDED
public static final EnumParticleTypes SUSPENDED
-
SUSPENDED_DEPTH
public static final EnumParticleTypes SUSPENDED_DEPTH
-
CRIT
public static final EnumParticleTypes CRIT
-
CRIT_MAGIC
public static final EnumParticleTypes CRIT_MAGIC
-
SMOKE_NORMAL
public static final EnumParticleTypes SMOKE_NORMAL
-
SMOKE_LARGE
public static final EnumParticleTypes SMOKE_LARGE
-
SPELL
public static final EnumParticleTypes SPELL
-
SPELL_INSTANT
public static final EnumParticleTypes SPELL_INSTANT
-
SPELL_MOB
public static final EnumParticleTypes SPELL_MOB
-
SPELL_MOB_AMBIENT
public static final EnumParticleTypes SPELL_MOB_AMBIENT
-
SPELL_WITCH
public static final EnumParticleTypes SPELL_WITCH
-
DRIP_WATER
public static final EnumParticleTypes DRIP_WATER
-
DRIP_LAVA
public static final EnumParticleTypes DRIP_LAVA
-
VILLAGER_ANGRY
public static final EnumParticleTypes VILLAGER_ANGRY
-
VILLAGER_HAPPY
public static final EnumParticleTypes VILLAGER_HAPPY
-
TOWN_AURA
public static final EnumParticleTypes TOWN_AURA
-
NOTE
public static final EnumParticleTypes NOTE
-
PORTAL
public static final EnumParticleTypes PORTAL
-
ENCHANTMENT_TABLE
public static final EnumParticleTypes ENCHANTMENT_TABLE
-
FLAME
public static final EnumParticleTypes FLAME
-
LAVA
public static final EnumParticleTypes LAVA
-
FOOTSTEP
public static final EnumParticleTypes FOOTSTEP
-
CLOUD
public static final EnumParticleTypes CLOUD
-
REDSTONE
public static final EnumParticleTypes REDSTONE
-
SNOWBALL
public static final EnumParticleTypes SNOWBALL
-
SNOW_SHOVEL
public static final EnumParticleTypes SNOW_SHOVEL
-
SLIME
public static final EnumParticleTypes SLIME
-
HEART
public static final EnumParticleTypes HEART
-
BARRIER
public static final EnumParticleTypes BARRIER
-
ITEM_CRACK
public static final EnumParticleTypes ITEM_CRACK
-
BLOCK_CRACK
public static final EnumParticleTypes BLOCK_CRACK
-
BLOCK_DUST
public static final EnumParticleTypes BLOCK_DUST
-
WATER_DROP
public static final EnumParticleTypes WATER_DROP
-
ITEM_TAKE
public static final EnumParticleTypes ITEM_TAKE
-
MOB_APPEARANCE
public static final EnumParticleTypes MOB_APPEARANCE
-
-
Method Detail
-
values
public static EnumParticleTypes[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EnumParticleTypes c : EnumParticleTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnumParticleTypes 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
-
getParticleNames
public static java.lang.String[] getParticleNames()
-
getParticleName
public java.lang.String getParticleName()
-
getParticleID
public int getParticleID()
-
getArgumentCount
public int getArgumentCount()
-
getShouldIgnoreRange
public boolean getShouldIgnoreRange()
-
hasArguments
public boolean hasArguments()
-
getParticleFromId
public static EnumParticleTypes getParticleFromId(int particleId)
+ Gets the relative EnumParticleTypes by id.
-
-