Package net.runelite.api
Enum Hitsplat.HitsplatType
- java.lang.Object
-
- java.lang.Enum<Hitsplat.HitsplatType>
-
- net.runelite.api.Hitsplat.HitsplatType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Hitsplat.HitsplatType>
- Enclosing interface:
- Hitsplat
public static enum Hitsplat.HitsplatType extends java.lang.Enum<Hitsplat.HitsplatType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DAMAGE_MEDAMAGE_ME_CYANDAMAGE_ME_ORANGEDAMAGE_ME_POISEDAMAGE_ME_WHITEDAMAGE_ME_YELLOWDAMAGE_OTHERDAMAGE_OTHER_CYANDAMAGE_OTHER_ORANGEDAMAGE_OTHER_POISEDAMAGE_OTHER_WHITEDAMAGE_OTHER_YELLOW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Hitsplat.HitsplatTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Hitsplat.HitsplatType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DAMAGE_ME
public static final Hitsplat.HitsplatType DAMAGE_ME
-
DAMAGE_ME_CYAN
public static final Hitsplat.HitsplatType DAMAGE_ME_CYAN
-
DAMAGE_ME_ORANGE
public static final Hitsplat.HitsplatType DAMAGE_ME_ORANGE
-
DAMAGE_ME_WHITE
public static final Hitsplat.HitsplatType DAMAGE_ME_WHITE
-
DAMAGE_ME_YELLOW
public static final Hitsplat.HitsplatType DAMAGE_ME_YELLOW
-
DAMAGE_ME_POISE
public static final Hitsplat.HitsplatType DAMAGE_ME_POISE
-
DAMAGE_OTHER
public static final Hitsplat.HitsplatType DAMAGE_OTHER
-
DAMAGE_OTHER_CYAN
public static final Hitsplat.HitsplatType DAMAGE_OTHER_CYAN
-
DAMAGE_OTHER_ORANGE
public static final Hitsplat.HitsplatType DAMAGE_OTHER_ORANGE
-
DAMAGE_OTHER_WHITE
public static final Hitsplat.HitsplatType DAMAGE_OTHER_WHITE
-
DAMAGE_OTHER_YELLOW
public static final Hitsplat.HitsplatType DAMAGE_OTHER_YELLOW
-
DAMAGE_OTHER_POISE
public static final Hitsplat.HitsplatType DAMAGE_OTHER_POISE
-
-
Method Detail
-
values
public static Hitsplat.HitsplatType[] 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 (Hitsplat.HitsplatType c : Hitsplat.HitsplatType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Hitsplat.HitsplatType 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
-
-