Package net.runelite.api
Enum HintArrowType
- java.lang.Object
-
- java.lang.Enum<HintArrowType>
-
- net.runelite.api.HintArrowType
-
- All Implemented Interfaces:
Serializable
,Comparable<HintArrowType>
public enum HintArrowType extends Enum<HintArrowType>
An enumeration of hint arrow types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONE
No hint arrow present.NPC
Hint arrow is pointing to an NPC.PLAYER
Hint arrow is pointing to a player.WORLD_POSITION
Hint arrow is pointing at a position in the world.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
The raw type value.static HintArrowType
valueOf(String name)
Returns the enum constant of this type with the specified name.static HintArrowType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final HintArrowType NONE
No hint arrow present.
-
PLAYER
public static final HintArrowType PLAYER
Hint arrow is pointing to a player.
-
NPC
public static final HintArrowType NPC
Hint arrow is pointing to an NPC.
-
WORLD_POSITION
public static final HintArrowType WORLD_POSITION
Hint arrow is pointing at a position in the world.
-
-
Method Detail
-
values
public static HintArrowType[] 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 (HintArrowType c : HintArrowType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HintArrowType 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
-
getValue
public int getValue()
The raw type value.
-
-