Enum ClueNestTier
- java.lang.Object
-
- java.lang.Enum<ClueNestTier>
-
- net.runelite.client.plugins.woodcutting.config.ClueNestTier
-
- All Implemented Interfaces:
Serializable
,Comparable<ClueNestTier>
public enum ClueNestTier extends Enum<ClueNestTier>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClueNestTier
getTierFromItem(int itemId)
static ClueNestTier
valueOf(String name)
Returns the enum constant of this type with the specified name.static ClueNestTier[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEGINNER
public static final ClueNestTier BEGINNER
-
EASY
public static final ClueNestTier EASY
-
MEDIUM
public static final ClueNestTier MEDIUM
-
HARD
public static final ClueNestTier HARD
-
ELITE
public static final ClueNestTier ELITE
-
DISABLED
public static final ClueNestTier DISABLED
-
-
Method Detail
-
values
public static ClueNestTier[] 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 (ClueNestTier c : ClueNestTier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClueNestTier 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
-
getTierFromItem
public static ClueNestTier getTierFromItem(int itemId)
-
-