Enum WebNodeType
- java.lang.Object
-
- java.lang.Enum<WebNodeType>
-
- org.dreambot.api.methods.walking.web.node.WebNodeType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WebNodeType>
public enum WebNodeType extends java.lang.Enum<WebNodeType>
Created with IntelliJ IDEA.- Since:
- : 1/21/2015 Time : 1:09 PM
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGILITY_NODE
BANK_NODE
BASIC_NODE
CHARTER_NODE
ENTRANCE_NODE
FAIRY_RING_NODE
MAGIC_CARPET_NODE
MOUNTAIN_GUIDE_NODE
SHIP_NODE
SPIRIT_TREE_NODE
TELEPORT_NODE
TOLL_NODE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getId()
java.lang.String
toString()
static WebNodeType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WebNodeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASIC_NODE
public static final WebNodeType BASIC_NODE
-
ENTRANCE_NODE
public static final WebNodeType ENTRANCE_NODE
-
TOLL_NODE
public static final WebNodeType TOLL_NODE
-
BANK_NODE
public static final WebNodeType BANK_NODE
-
AGILITY_NODE
public static final WebNodeType AGILITY_NODE
-
CHARTER_NODE
public static final WebNodeType CHARTER_NODE
-
SPIRIT_TREE_NODE
public static final WebNodeType SPIRIT_TREE_NODE
-
FAIRY_RING_NODE
public static final WebNodeType FAIRY_RING_NODE
-
TELEPORT_NODE
public static final WebNodeType TELEPORT_NODE
-
SHIP_NODE
public static final WebNodeType SHIP_NODE
-
MAGIC_CARPET_NODE
public static final WebNodeType MAGIC_CARPET_NODE
-
MOUNTAIN_GUIDE_NODE
public static final WebNodeType MOUNTAIN_GUIDE_NODE
-
-
Method Detail
-
values
public static WebNodeType[] 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 (WebNodeType c : WebNodeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebNodeType 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
-
getId
public int getId()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<WebNodeType>
-
-