Package org.rspeer.game.component.tdi
Enum SubTab.AccountManagement
- java.lang.Object
-
- java.lang.Enum<SubTab.AccountManagement>
-
- org.rspeer.game.component.tdi.SubTab.AccountManagement
-
- All Implemented Interfaces:
Serializable
,Comparable<SubTab.AccountManagement>
,SubTab
,TDI
- Enclosing interface:
- SubTab
public static enum SubTab.AccountManagement extends Enum<SubTab.AccountManagement> 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 ACCOUNT
COMMUNITY
USEFUL_LINKS
-
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.AccountManagement
valueOf(String name)
Returns the enum constant of this type with the specified name.static SubTab.AccountManagement[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCOUNT
public static final SubTab.AccountManagement ACCOUNT
-
COMMUNITY
public static final SubTab.AccountManagement COMMUNITY
-
USEFUL_LINKS
public static final SubTab.AccountManagement USEFUL_LINKS
-
-
Method Detail
-
values
public static SubTab.AccountManagement[] 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.AccountManagement c : SubTab.AccountManagement.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.AccountManagement 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.AccountManagement>
-
-