Enum BankTab
- java.lang.Object
-
- java.lang.Enum<BankTab>
-
- net.eternalclient.api.containers.bank.BankTab
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EIGHTH_TABFIFTH_TABFIRST_TABFOURTH_TABMAIN_TABNINTH_TABSECOND_TABSEVENTH_TABSIXTH_TABTHIRD_TAB
-
Field Summary
Fields Modifier and Type Field Description intgrandChildID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description WidgetChildgetWidget()static BankTabvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BankTab[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAIN_TAB
public static final BankTab MAIN_TAB
-
FIRST_TAB
public static final BankTab FIRST_TAB
-
SECOND_TAB
public static final BankTab SECOND_TAB
-
THIRD_TAB
public static final BankTab THIRD_TAB
-
FOURTH_TAB
public static final BankTab FOURTH_TAB
-
FIFTH_TAB
public static final BankTab FIFTH_TAB
-
SIXTH_TAB
public static final BankTab SIXTH_TAB
-
SEVENTH_TAB
public static final BankTab SEVENTH_TAB
-
EIGHTH_TAB
public static final BankTab EIGHTH_TAB
-
NINTH_TAB
public static final BankTab NINTH_TAB
-
-
Method Detail
-
values
public static BankTab[] 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 (BankTab c : BankTab.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BankTab 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
-
getWidget
public WidgetChild getWidget()
-
-