Enum ClueScrollConfig.IdentificationMode
- java.lang.Object
-
- java.lang.Enum<ClueScrollConfig.IdentificationMode>
-
- net.runelite.client.plugins.cluescrolls.ClueScrollConfig.IdentificationMode
-
- All Implemented Interfaces:
Serializable
,Comparable<ClueScrollConfig.IdentificationMode>
- Enclosing interface:
- ClueScrollConfig
public static enum ClueScrollConfig.IdentificationMode extends Enum<ClueScrollConfig.IdentificationMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IF_INACTIVE
ON_PICKUP
ON_READ
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClueScrollConfig.IdentificationMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static ClueScrollConfig.IdentificationMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ON_READ
public static final ClueScrollConfig.IdentificationMode ON_READ
-
IF_INACTIVE
public static final ClueScrollConfig.IdentificationMode IF_INACTIVE
-
ON_PICKUP
public static final ClueScrollConfig.IdentificationMode ON_PICKUP
-
-
Method Detail
-
values
public static ClueScrollConfig.IdentificationMode[] 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 (ClueScrollConfig.IdentificationMode c : ClueScrollConfig.IdentificationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClueScrollConfig.IdentificationMode 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
-
-