Package com.epicbot.api.shared.model
Enum HintArrow.HintArrowType
- java.lang.Object
-
- java.lang.Enum<HintArrow.HintArrowType>
-
- com.epicbot.api.shared.model.HintArrow.HintArrowType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HintArrow.HintArrowType>
- Enclosing interface:
- HintArrow
public static enum HintArrow.HintArrowType extends java.lang.Enum<HintArrow.HintArrowType>
-
-
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()
static HintArrow.HintArrowType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HintArrow.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 HintArrow.HintArrowType NONE
No hint arrow present.
-
NPC
public static final HintArrow.HintArrowType NPC
Hint arrow is pointing to an NPC.
-
WORLD_POSITION
public static final HintArrow.HintArrowType WORLD_POSITION
Hint arrow is pointing at a position in the world.
-
PLAYER
public static final HintArrow.HintArrowType PLAYER
Hint arrow is pointing to a player.
-
-
Method Detail
-
values
public static HintArrow.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 (HintArrow.HintArrowType c : HintArrow.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 HintArrow.HintArrowType 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
-
getValue
public int getValue()
-
-