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