Package org.rspeer.game
Enum ScriptComposite
- java.lang.Object
-
- java.lang.Enum<ScriptComposite>
-
- org.rspeer.game.ScriptComposite
-
- All Implemented Interfaces:
Serializable
,Comparable<ScriptComposite>
public enum ScriptComposite extends Enum<ScriptComposite>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getId()
static ScriptComposite
valueOf(String name)
Returns the enum constant of this type with the specified name.static ScriptComposite[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SETTINGS_CLICK_TOGGLE
public static final ScriptComposite SETTINGS_CLICK_TOGGLE
-
SETTINGS_SET_SLIDER
public static final ScriptComposite SETTINGS_SET_SLIDER
-
SETTINGS_SELECT_DROPDOWN
public static final ScriptComposite SETTINGS_SELECT_DROPDOWN
-
SETTINGS_SET_KEYBIND
public static final ScriptComposite SETTINGS_SET_KEYBIND
-
SETTINGS_CLICK_BUTTON
public static final ScriptComposite SETTINGS_CLICK_BUTTON
-
RUNE_COUNT
public static final ScriptComposite RUNE_COUNT
-
GET_QUEST_PROGRESS
public static final ScriptComposite GET_QUEST_PROGRESS
-
GET_QUEST_STATE
public static final ScriptComposite GET_QUEST_STATE
-
SET_VIEW_MODE
public static final ScriptComposite SET_VIEW_MODE
-
SET_STOCKMARKET_ITEM
public static final ScriptComposite SET_STOCKMARKET_ITEM
-
SEND_PRIVATE_MESSAGE
public static final ScriptComposite SEND_PRIVATE_MESSAGE
-
SEND_PUBLIC_MESSAGE
public static final ScriptComposite SEND_PUBLIC_MESSAGE
-
KICK_FRENDSCHATUSER
public static final ScriptComposite KICK_FRENDSCHATUSER
-
HIGHLIGHT_TILE
public static final ScriptComposite HIGHLIGHT_TILE
-
CHATBOX_MULTI_INIT
public static final ScriptComposite CHATBOX_MULTI_INIT
-
MESLAYER_MODE7_NUMERIC
public static final ScriptComposite MESLAYER_MODE7_NUMERIC
-
MESLAYER_MODE8_TEXT
public static final ScriptComposite MESLAYER_MODE8_TEXT
-
MESLAYER_MODE14_ITEM_SEARCH
public static final ScriptComposite MESLAYER_MODE14_ITEM_SEARCH
-
MESLAYER_CLOSE
public static final ScriptComposite MESLAYER_CLOSE
-
CHAT_PROMPT_INIT
public static final ScriptComposite CHAT_PROMPT_INIT
-
-
Method Detail
-
values
public static ScriptComposite[] 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 (ScriptComposite c : ScriptComposite.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScriptComposite 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
-
getId
public int getId()
-
-