Package rs.kreme.ksbot.api.scripts
Enum Category
- java.lang.Object
-
- java.lang.Enum<Category>
-
- rs.kreme.ksbot.api.scripts.Category
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGILITY
COMBAT
CONSTRUCTION
COOKING
CRAFTING
FARMING
FIREMAKING
FISHING
FLETCHING
HERBLORE
HUNTER
MAGIC
MINIGAMES
MINING
MONEYMAKING
OTHER
PRAYER
RUNECRAFTING
SLAYER
SMITHING
THIEVING
UTILITY
WOODCUTTING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Category
forName(java.lang.String value)
java.awt.image.BufferedImage
getIcon()
java.lang.String
toString()
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
-
AGILITY
public static final Category AGILITY
-
COMBAT
public static final Category COMBAT
-
CONSTRUCTION
public static final Category CONSTRUCTION
-
COOKING
public static final Category COOKING
-
CRAFTING
public static final Category CRAFTING
-
FARMING
public static final Category FARMING
-
FIREMAKING
public static final Category FIREMAKING
-
FISHING
public static final Category FISHING
-
FLETCHING
public static final Category FLETCHING
-
HERBLORE
public static final Category HERBLORE
-
HUNTER
public static final Category HUNTER
-
MAGIC
public static final Category MAGIC
-
MINIGAMES
public static final Category MINIGAMES
-
MINING
public static final Category MINING
-
MONEYMAKING
public static final Category MONEYMAKING
-
OTHER
public static final Category OTHER
-
PRAYER
public static final Category PRAYER
-
RUNECRAFTING
public static final Category RUNECRAFTING
-
SLAYER
public static final Category SLAYER
-
SMITHING
public static final Category SMITHING
-
THIEVING
public static final Category THIEVING
-
UTILITY
public static final Category UTILITY
-
WOODCUTTING
public static final Category WOODCUTTING
-
-
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
-
forName
public static Category forName(java.lang.String value)
-
getIcon
public java.awt.image.BufferedImage getIcon()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Category>
-
-