Package org.dreambot.api
Enum ClientSettings.SettingsTab
- java.lang.Object
-
- java.lang.Enum<ClientSettings.SettingsTab>
-
- org.dreambot.api.ClientSettings.SettingsTab
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ClientSettings.SettingsTab>
- Enclosing class:
- ClientSettings
public static enum ClientSettings.SettingsTab extends java.lang.Enum<ClientSettings.SettingsTab>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVITIES
AUDIO
CHAT
CONTROLS
DISPLAY
GAMEPLAY
INTERFACES
POPOUT
WARNINGS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClientSettings.SettingsTab
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ClientSettings.SettingsTab[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVITIES
public static final ClientSettings.SettingsTab ACTIVITIES
-
AUDIO
public static final ClientSettings.SettingsTab AUDIO
-
CHAT
public static final ClientSettings.SettingsTab CHAT
-
CONTROLS
public static final ClientSettings.SettingsTab CONTROLS
-
DISPLAY
public static final ClientSettings.SettingsTab DISPLAY
-
GAMEPLAY
public static final ClientSettings.SettingsTab GAMEPLAY
-
INTERFACES
public static final ClientSettings.SettingsTab INTERFACES
-
WARNINGS
public static final ClientSettings.SettingsTab WARNINGS
-
POPOUT
public static final ClientSettings.SettingsTab POPOUT
-
-
Method Detail
-
values
public static ClientSettings.SettingsTab[] 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 (ClientSettings.SettingsTab c : ClientSettings.SettingsTab.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientSettings.SettingsTab 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
-
-