Package net.runelite.api.vars
Enum InterfaceTab
- java.lang.Object
-
- java.lang.Enum<InterfaceTab>
-
- net.runelite.api.vars.InterfaceTab
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<InterfaceTab>
public enum InterfaceTab extends java.lang.Enum<InterfaceTab>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetId()static InterfaceTabvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static InterfaceTab[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMBAT
public static final InterfaceTab COMBAT
-
STATS
public static final InterfaceTab STATS
-
QUEST
public static final InterfaceTab QUEST
-
INVENTORY
public static final InterfaceTab INVENTORY
-
EQUIPMENT
public static final InterfaceTab EQUIPMENT
-
PRAYER
public static final InterfaceTab PRAYER
-
SPELLBOOK
public static final InterfaceTab SPELLBOOK
-
CLAN
public static final InterfaceTab CLAN
-
ACCOUNT_MANAGMENT
public static final InterfaceTab ACCOUNT_MANAGMENT
-
FRIENDS
public static final InterfaceTab FRIENDS
-
LOGOUT
public static final InterfaceTab LOGOUT
-
OPTIONS
public static final InterfaceTab OPTIONS
-
EMOTES
public static final InterfaceTab EMOTES
-
MUSIC
public static final InterfaceTab MUSIC
-
-
Method Detail
-
values
public static InterfaceTab[] 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 (InterfaceTab c : InterfaceTab.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InterfaceTab 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
-
getId
public int getId()
-
-