Package net.minecraft.entity.monster
Enum SpellcastingIllagerEntity.SpellType
- java.lang.Object
-
- java.lang.Enum<SpellcastingIllagerEntity.SpellType>
-
- net.minecraft.entity.monster.SpellcastingIllagerEntity.SpellType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SpellcastingIllagerEntity.SpellType>
- Enclosing class:
- SpellcastingIllagerEntity
public static enum SpellcastingIllagerEntity.SpellType extends java.lang.Enum<SpellcastingIllagerEntity.SpellType>
-
-
Field Summary
Fields Modifier and Type Field Description private int
id
private double[]
spellColor
-
Constructor Summary
Constructors Modifier Constructor Description private
SpellType(int p_i47561_3_, double p_i47561_4_, double p_i47561_6_, double p_i47561_8_)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpellcastingIllagerEntity.SpellType
byId(int p_193337_0_)
static SpellcastingIllagerEntity.SpellType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SpellcastingIllagerEntity.SpellType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final SpellcastingIllagerEntity.SpellType NONE
-
SUMMON_VEX
public static final SpellcastingIllagerEntity.SpellType SUMMON_VEX
-
FANGS
public static final SpellcastingIllagerEntity.SpellType FANGS
-
WOLOLO
public static final SpellcastingIllagerEntity.SpellType WOLOLO
-
DISAPPEAR
public static final SpellcastingIllagerEntity.SpellType DISAPPEAR
-
BLINDNESS
public static final SpellcastingIllagerEntity.SpellType BLINDNESS
-
-
Method Detail
-
values
public static SpellcastingIllagerEntity.SpellType[] 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 (SpellcastingIllagerEntity.SpellType c : SpellcastingIllagerEntity.SpellType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpellcastingIllagerEntity.SpellType 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
-
byId
public static SpellcastingIllagerEntity.SpellType byId(int p_193337_0_)
-
-