Package org.rspeer.game.component.tdi
Enum SubTab.QuestList
- java.lang.Object
-
- java.lang.Enum<SubTab.QuestList>
-
- org.rspeer.game.component.tdi.SubTab.QuestList
-
- All Implemented Interfaces:
Serializable
,Comparable<SubTab.QuestList>
,SubTab
,TDI
- Enclosing interface:
- SubTab
public static enum SubTab.QuestList extends Enum<SubTab.QuestList> implements SubTab
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.rspeer.game.component.tdi.SubTab
SubTab.AccountManagement, SubTab.ChatChannel, SubTab.QuestList, SubTab.RelationshipSystem, SubTab.Settings
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACHIEVEMENT_DIARIES
CHARACTER_SUMMARY
KOUREND_FAVOUR
QUEST_LIST
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description InterfaceComponent
getComponent()
int
getIndex()
Tab
getParent()
VarComposite
getVarComposite()
String
toString()
static SubTab.QuestList
valueOf(String name)
Returns the enum constant of this type with the specified name.static SubTab.QuestList[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHARACTER_SUMMARY
public static final SubTab.QuestList CHARACTER_SUMMARY
-
QUEST_LIST
public static final SubTab.QuestList QUEST_LIST
-
ACHIEVEMENT_DIARIES
public static final SubTab.QuestList ACHIEVEMENT_DIARIES
-
KOUREND_FAVOUR
public static final SubTab.QuestList KOUREND_FAVOUR
-
-
Method Detail
-
values
public static SubTab.QuestList[] 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 (SubTab.QuestList c : SubTab.QuestList.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubTab.QuestList 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
-
getParent
public Tab getParent()
-
getComponent
public InterfaceComponent getComponent()
- Specified by:
getComponent
in interfaceTDI
-
getVarComposite
public VarComposite getVarComposite()
- Specified by:
getVarComposite
in interfaceSubTab
-
toString
public String toString()
- Overrides:
toString
in classEnum<SubTab.QuestList>
-
-