Package net.runelite.cache.definitions
Enum ClientScript1Instruction.Opcode
- java.lang.Object
-
- java.lang.Enum<ClientScript1Instruction.Opcode>
-
- net.runelite.cache.definitions.ClientScript1Instruction.Opcode
-
- All Implemented Interfaces:
Serializable,Comparable<ClientScript1Instruction.Opcode>
- Enclosing class:
- ClientScript1Instruction
public static enum ClientScript1Instruction.Opcode extends Enum<ClientScript1Instruction.Opcode>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description intargumentCount
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClientScript1Instruction.OpcodevalueOf(String name)Returns the enum constant of this type with the specified name.static ClientScript1Instruction.Opcode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RETURN
public static final ClientScript1Instruction.Opcode RETURN
-
BOOSTED_SKILL_LEVELS
public static final ClientScript1Instruction.Opcode BOOSTED_SKILL_LEVELS
-
REAL_SKILL_LEVELS
public static final ClientScript1Instruction.Opcode REAL_SKILL_LEVELS
-
SKILL_EXPERIENCE
public static final ClientScript1Instruction.Opcode SKILL_EXPERIENCE
-
WIDGET_CONTAINS_ITEM_GET_QUANTITY
public static final ClientScript1Instruction.Opcode WIDGET_CONTAINS_ITEM_GET_QUANTITY
-
VARP
public static final ClientScript1Instruction.Opcode VARP
-
EXPERIENCE_AT_LEVEL_FOR_SKILL
public static final ClientScript1Instruction.Opcode EXPERIENCE_AT_LEVEL_FOR_SKILL
-
VARP_TIMES_469
public static final ClientScript1Instruction.Opcode VARP_TIMES_469
-
COMBAT_LEVEL
public static final ClientScript1Instruction.Opcode COMBAT_LEVEL
-
TOTAL_LEVEL
public static final ClientScript1Instruction.Opcode TOTAL_LEVEL
-
WIDGET_CONTAINS_ITEM_STAR
public static final ClientScript1Instruction.Opcode WIDGET_CONTAINS_ITEM_STAR
-
RUN_ENERGY
public static final ClientScript1Instruction.Opcode RUN_ENERGY
-
WEIGHT
public static final ClientScript1Instruction.Opcode WEIGHT
-
VARP_TESTBIT
public static final ClientScript1Instruction.Opcode VARP_TESTBIT
-
VARBIT
public static final ClientScript1Instruction.Opcode VARBIT
-
MINUS
public static final ClientScript1Instruction.Opcode MINUS
-
DIV
public static final ClientScript1Instruction.Opcode DIV
-
MUL
public static final ClientScript1Instruction.Opcode MUL
-
WORLD_X
public static final ClientScript1Instruction.Opcode WORLD_X
-
WORLD_Y
public static final ClientScript1Instruction.Opcode WORLD_Y
-
CONSTANT
public static final ClientScript1Instruction.Opcode CONSTANT
-
-
Method Detail
-
values
public static ClientScript1Instruction.Opcode[] 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 (ClientScript1Instruction.Opcode c : ClientScript1Instruction.Opcode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientScript1Instruction.Opcode 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
-
-