Enum HotColdArea
- java.lang.Object
-
- java.lang.Enum<HotColdArea>
-
- net.runelite.client.plugins.cluescrolls.clues.hotcold.HotColdArea
-
- All Implemented Interfaces:
Serializable
,Comparable<HotColdArea>
public enum HotColdArea extends Enum<HotColdArea>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASGARNIA
DESERT
FELDIP_HILLS
FREMENNIK_PROVINCE
KANDARIN
KARAMJA
MISTHALIN
MORYTANIA
VARLAMORE
WESTERN_PROVINCE
WILDERNESS
ZEAH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
static HotColdArea
valueOf(String name)
Returns the enum constant of this type with the specified name.static HotColdArea[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASGARNIA
public static final HotColdArea ASGARNIA
-
DESERT
public static final HotColdArea DESERT
-
FELDIP_HILLS
public static final HotColdArea FELDIP_HILLS
-
FREMENNIK_PROVINCE
public static final HotColdArea FREMENNIK_PROVINCE
-
KANDARIN
public static final HotColdArea KANDARIN
-
KARAMJA
public static final HotColdArea KARAMJA
-
MISTHALIN
public static final HotColdArea MISTHALIN
-
MORYTANIA
public static final HotColdArea MORYTANIA
-
VARLAMORE
public static final HotColdArea VARLAMORE
-
WESTERN_PROVINCE
public static final HotColdArea WESTERN_PROVINCE
-
WILDERNESS
public static final HotColdArea WILDERNESS
-
ZEAH
public static final HotColdArea ZEAH
-
-
Method Detail
-
values
public static HotColdArea[] 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 (HotColdArea c : HotColdArea.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HotColdArea 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
-
getName
public String getName()
-
-