Package org.rspeer.game.service.combat
Enum DebuffType
- java.lang.Object
-
- java.lang.Enum<DebuffType>
-
- org.rspeer.game.service.combat.DebuffType
-
- All Implemented Interfaces:
Serializable,Comparable<DebuffType>
public enum DebuffType extends Enum<DebuffType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCURSED_SCEPTRE_SPECTONALZTICS_OF_RALOS_SPECVULNERABILITY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisFiring(PathingEntity<?> source, PathingEntity<?> target)StringtoString()static DebuffTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DebuffType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCURSED_SCEPTRE_SPEC
public static final DebuffType ACCURSED_SCEPTRE_SPEC
-
TONALZTICS_OF_RALOS_SPEC
public static final DebuffType TONALZTICS_OF_RALOS_SPEC
-
VULNERABILITY
public static final DebuffType VULNERABILITY
-
-
Method Detail
-
values
public static DebuffType[] 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 (DebuffType c : DebuffType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DebuffType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isFiring
public boolean isFiring(PathingEntity<?> source, PathingEntity<?> target)
-
toString
public String toString()
- Overrides:
toStringin classEnum<DebuffType>
-
-