Package rs.kreme.ksbot.api.hooks
Enum Teleporter.Subcategory
- java.lang.Object
-
- java.lang.Enum<Teleporter.Subcategory>
-
- rs.kreme.ksbot.api.hooks.Teleporter.Subcategory
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Teleporter.Subcategory>
- Enclosing class:
- Teleporter
public static enum Teleporter.Subcategory extends java.lang.Enum<Teleporter.Subcategory>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGILITY
FARMING
FISHING
HUNTING
MINING
RUNECRAFTING
SLAYER
THIEVING
WOODCUTTING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Teleporter.Subcategory
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Teleporter.Subcategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WOODCUTTING
public static final Teleporter.Subcategory WOODCUTTING
-
FARMING
public static final Teleporter.Subcategory FARMING
-
FISHING
public static final Teleporter.Subcategory FISHING
-
RUNECRAFTING
public static final Teleporter.Subcategory RUNECRAFTING
-
MINING
public static final Teleporter.Subcategory MINING
-
HUNTING
public static final Teleporter.Subcategory HUNTING
-
AGILITY
public static final Teleporter.Subcategory AGILITY
-
THIEVING
public static final Teleporter.Subcategory THIEVING
-
SLAYER
public static final Teleporter.Subcategory SLAYER
-
-
Method Detail
-
values
public static Teleporter.Subcategory[] 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 (Teleporter.Subcategory c : Teleporter.Subcategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Teleporter.Subcategory 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
-
-