Package net.eternalclient.api.script
Enum ScriptCategory
- java.lang.Object
-
- java.lang.Enum<ScriptCategory>
-
- net.eternalclient.api.script.ScriptCategory
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ScriptCategory>
public enum ScriptCategory extends java.lang.Enum<ScriptCategory>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGILITY
AIO
COMBAT
CONSTRUCTION
COOKING
CRAFTING
FARMING
FIREMAKING
FISHING
FLETCHING
HERBLORE
HUNTER
MAGIC
MINIGAMES
MINING
MONEYMAKING
OTHER
PRAYER
QUESTING
RUNECRAFTING
SLAYER
SMITHING
THIEVING
WOODCUTTING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ScriptCategory
fromName(java.lang.String name)
java.lang.String
getName()
static ScriptCategory
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ScriptCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AGILITY
public static final ScriptCategory AGILITY
-
COOKING
public static final ScriptCategory COOKING
-
CONSTRUCTION
public static final ScriptCategory CONSTRUCTION
-
CRAFTING
public static final ScriptCategory CRAFTING
-
FARMING
public static final ScriptCategory FARMING
-
FLETCHING
public static final ScriptCategory FLETCHING
-
FIREMAKING
public static final ScriptCategory FIREMAKING
-
FISHING
public static final ScriptCategory FISHING
-
HERBLORE
public static final ScriptCategory HERBLORE
-
HUNTER
public static final ScriptCategory HUNTER
-
MAGIC
public static final ScriptCategory MAGIC
-
MINING
public static final ScriptCategory MINING
-
PRAYER
public static final ScriptCategory PRAYER
-
RUNECRAFTING
public static final ScriptCategory RUNECRAFTING
-
SLAYER
public static final ScriptCategory SLAYER
-
SMITHING
public static final ScriptCategory SMITHING
-
THIEVING
public static final ScriptCategory THIEVING
-
WOODCUTTING
public static final ScriptCategory WOODCUTTING
-
COMBAT
public static final ScriptCategory COMBAT
-
QUESTING
public static final ScriptCategory QUESTING
-
MINIGAMES
public static final ScriptCategory MINIGAMES
-
MONEYMAKING
public static final ScriptCategory MONEYMAKING
-
OTHER
public static final ScriptCategory OTHER
-
AIO
public static final ScriptCategory AIO
-
-
Method Detail
-
values
public static ScriptCategory[] 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 (ScriptCategory c : ScriptCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScriptCategory 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
-
fromName
public static ScriptCategory fromName(java.lang.String name)
-
getName
public java.lang.String getName()
-
-