Enum PrayerFlickLocation
- java.lang.Object
-
- java.lang.Enum<PrayerFlickLocation>
-
- net.runelite.client.plugins.prayer.PrayerFlickLocation
-
- All Implemented Interfaces:
Serializable
,Comparable<PrayerFlickLocation>
public enum PrayerFlickLocation extends Enum<PrayerFlickLocation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOTH
NONE
PRAYER_BAR
PRAYER_ORB
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PrayerFlickLocation
valueOf(String name)
Returns the enum constant of this type with the specified name.static PrayerFlickLocation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final PrayerFlickLocation NONE
-
PRAYER_ORB
public static final PrayerFlickLocation PRAYER_ORB
-
PRAYER_BAR
public static final PrayerFlickLocation PRAYER_BAR
-
BOTH
public static final PrayerFlickLocation BOTH
-
-
Method Detail
-
values
public static PrayerFlickLocation[] 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 (PrayerFlickLocation c : PrayerFlickLocation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrayerFlickLocation 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
-
-