Package com.kraken.api.service.ui.tab
Enum InterfaceTab
- java.lang.Object
-
- java.lang.Enum<InterfaceTab>
-
- com.kraken.api.service.ui.tab.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 Concrete Methods Modifier and Type Method Description 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
-
SKILLS
public static final InterfaceTab SKILLS
-
QUESTS
public static final InterfaceTab QUESTS
-
INVENTORY
public static final InterfaceTab INVENTORY
-
EQUIPMENT
public static final InterfaceTab EQUIPMENT
-
PRAYER
public static final InterfaceTab PRAYER
-
MAGIC
public static final InterfaceTab MAGIC
-
FRIENDS
public static final InterfaceTab FRIENDS
-
SETTINGS
public static final InterfaceTab SETTINGS
-
MUSIC
public static final InterfaceTab MUSIC
-
LOGOUT
public static final InterfaceTab LOGOUT
-
CHAT
public static final InterfaceTab CHAT
-
ACC_MAN
public static final InterfaceTab ACC_MAN
-
EMOTES
public static final InterfaceTab EMOTES
-
NOTHING_SELECTED
public static final InterfaceTab NOTHING_SELECTED
-
-
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
-
-