Package net.storm.api.prayer
Enum PrayerInfo
- java.lang.Object
-
- java.lang.Enum<PrayerInfo>
-
- net.storm.api.prayer.PrayerInfo
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PrayerInfo>
public enum PrayerInfo extends java.lang.Enum<PrayerInfo>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description static java.util.Map<net.runelite.api.Prayer,PrayerInfo>
MAP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PrayerInfo
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PrayerInfo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
THICK_SKIN
public static final PrayerInfo THICK_SKIN
-
BURST_OF_STRENGTH
public static final PrayerInfo BURST_OF_STRENGTH
-
CLARITY_OF_THOUGHT
public static final PrayerInfo CLARITY_OF_THOUGHT
-
SHARP_EYE
public static final PrayerInfo SHARP_EYE
-
MYSTIC_WILL
public static final PrayerInfo MYSTIC_WILL
-
ROCK_SKIN
public static final PrayerInfo ROCK_SKIN
-
SUPERHUMAN_STRENGTH
public static final PrayerInfo SUPERHUMAN_STRENGTH
-
IMPROVED_REFLEXES
public static final PrayerInfo IMPROVED_REFLEXES
-
RAPID_RESTORE
public static final PrayerInfo RAPID_RESTORE
-
RAPID_HEAL
public static final PrayerInfo RAPID_HEAL
-
PROTECT_ITEM
public static final PrayerInfo PROTECT_ITEM
-
HAWK_EYE
public static final PrayerInfo HAWK_EYE
-
MYSTIC_LORE
public static final PrayerInfo MYSTIC_LORE
-
STEEL_SKIN
public static final PrayerInfo STEEL_SKIN
-
ULTIMATE_STRENGTH
public static final PrayerInfo ULTIMATE_STRENGTH
-
INCREDIBLE_REFLEXES
public static final PrayerInfo INCREDIBLE_REFLEXES
-
PROTECT_FROM_MAGIC
public static final PrayerInfo PROTECT_FROM_MAGIC
-
PROTECT_FROM_MISSILES
public static final PrayerInfo PROTECT_FROM_MISSILES
-
PROTECT_FROM_MELEE
public static final PrayerInfo PROTECT_FROM_MELEE
-
EAGLE_EYE
public static final PrayerInfo EAGLE_EYE
-
MYSTIC_MIGHT
public static final PrayerInfo MYSTIC_MIGHT
-
RETRIBUTION
public static final PrayerInfo RETRIBUTION
-
REDEMPTION
public static final PrayerInfo REDEMPTION
-
SMITE
public static final PrayerInfo SMITE
-
PRESERVE
public static final PrayerInfo PRESERVE
-
CHIVALRY
public static final PrayerInfo CHIVALRY
-
DEADEYE
public static final PrayerInfo DEADEYE
-
MYSTIC_VIGOUR
public static final PrayerInfo MYSTIC_VIGOUR
-
PIETY
public static final PrayerInfo PIETY
-
RIGOUR
public static final PrayerInfo RIGOUR
-
AUGURY
public static final PrayerInfo AUGURY
-
-
Field Detail
-
MAP
public static final java.util.Map<net.runelite.api.Prayer,PrayerInfo> MAP
-
-
Method Detail
-
values
public static PrayerInfo[] 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 (PrayerInfo c : PrayerInfo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrayerInfo 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
-
-