Package net.runelite.client.plugins.poh
Enum PohIcons
- java.lang.Object
-
- java.lang.Enum<PohIcons>
-
- net.runelite.client.plugins.poh.PohIcons
-
- All Implemented Interfaces:
Serializable
,Comparable<PohIcons>
public enum PohIcons extends Enum<PohIcons>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PohIcons
getIcon(int id)
int[]
getIds()
BufferedImage
getImage()
String
getImageResource()
static PohIcons
valueOf(String name)
Returns the enum constant of this type with the specified name.static PohIcons[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXITPORTAL
public static final PohIcons EXITPORTAL
-
VARROCK
public static final PohIcons VARROCK
-
FALADOR
public static final PohIcons FALADOR
-
LUMBRIDGE
public static final PohIcons LUMBRIDGE
-
ARDOUGNE
public static final PohIcons ARDOUGNE
-
YANILLE
public static final PohIcons YANILLE
-
CAMELOT
public static final PohIcons CAMELOT
-
LUNARISLE
public static final PohIcons LUNARISLE
-
WATERBIRTH
public static final PohIcons WATERBIRTH
-
FISHINGGUILD
public static final PohIcons FISHINGGUILD
-
SENNTISTEN
public static final PohIcons SENNTISTEN
-
KHARYLL
public static final PohIcons KHARYLL
-
ANNAKARL
public static final PohIcons ANNAKARL
-
KOUREND
public static final PohIcons KOUREND
-
MARIM
public static final PohIcons MARIM
-
TROLLSTRONGHOLD
public static final PohIcons TROLLSTRONGHOLD
-
GHORROCK
public static final PohIcons GHORROCK
-
CARRALLANGER
public static final PohIcons CARRALLANGER
-
CATHERBY
public static final PohIcons CATHERBY
-
WEISS
public static final PohIcons WEISS
-
APEATOLLDUNGEON
public static final PohIcons APEATOLLDUNGEON
-
BARROWS
public static final PohIcons BARROWS
-
BATTLEFRONT
public static final PohIcons BATTLEFRONT
-
CEMETERY
public static final PohIcons CEMETERY
-
DRAYNORMANOR
public static final PohIcons DRAYNORMANOR
-
FENKENSTRAINSCASTLE
public static final PohIcons FENKENSTRAINSCASTLE
-
HARMONYISLAND
public static final PohIcons HARMONYISLAND
-
ARCEUUSLIBRARY
public static final PohIcons ARCEUUSLIBRARY
-
MINDALTAR
public static final PohIcons MINDALTAR
-
SALVEGRAVEYARD
public static final PohIcons SALVEGRAVEYARD
-
WESTARDOUGNE
public static final PohIcons WESTARDOUGNE
-
ALTAR
public static final PohIcons ALTAR
-
POOLS
public static final PohIcons POOLS
-
GLORY
public static final PohIcons GLORY
-
REPAIR
public static final PohIcons REPAIR
-
SPELLBOOKALTAR
public static final PohIcons SPELLBOOKALTAR
-
JEWELLERYBOX
public static final PohIcons JEWELLERYBOX
-
MAGICTRAVEL
public static final PohIcons MAGICTRAVEL
-
PORTALNEXUS
public static final PohIcons PORTALNEXUS
-
XERICSTALISMAN
public static final PohIcons XERICSTALISMAN
-
DIGSITEPENDANT
public static final PohIcons DIGSITEPENDANT
-
MYTHICALCAPE
public static final PohIcons MYTHICALCAPE
-
-
Method Detail
-
values
public static PohIcons[] 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 (PohIcons c : PohIcons.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PohIcons 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
-
getIcon
public static PohIcons getIcon(int id)
-
getImage
public BufferedImage getImage()
-
getImageResource
public String getImageResource()
-
getIds
public int[] getIds()
-
-