Package org.dreambot.api.script
Enum Category
- java.lang.Object
-
- java.lang.Enum<Category>
-
- org.dreambot.api.script.Category
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGILITY
COMBAT
CONSTRUCTION
COOKING
CRAFTING
FARMING
FIREMAKING
FISHING
FLETCHING
HERBLORE
HUNTING
MAGIC
MINIGAME
MINING
MISC
MONEYMAKING
PRAYER
QUEST
RUNECRAFTING
SLAYER
SMITHING
THIEVING
UTILITY
WOODCUTTING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Category
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Category[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMBAT
public static final Category COMBAT
-
MINING
public static final Category MINING
-
AGILITY
public static final Category AGILITY
-
SMITHING
public static final Category SMITHING
-
HERBLORE
public static final Category HERBLORE
-
FISHING
public static final Category FISHING
-
THIEVING
public static final Category THIEVING
-
COOKING
public static final Category COOKING
-
PRAYER
public static final Category PRAYER
-
CRAFTING
public static final Category CRAFTING
-
FIREMAKING
public static final Category FIREMAKING
-
MAGIC
public static final Category MAGIC
-
FLETCHING
public static final Category FLETCHING
-
WOODCUTTING
public static final Category WOODCUTTING
-
RUNECRAFTING
public static final Category RUNECRAFTING
-
SLAYER
public static final Category SLAYER
-
FARMING
public static final Category FARMING
-
CONSTRUCTION
public static final Category CONSTRUCTION
-
HUNTING
public static final Category HUNTING
-
MONEYMAKING
public static final Category MONEYMAKING
-
UTILITY
public static final Category UTILITY
-
MISC
public static final Category MISC
-
QUEST
public static final Category QUEST
-
MINIGAME
public static final Category MINIGAME
-
-
Method Detail
-
values
public static Category[] 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 (Category c : Category.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Category 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
-
-