Enum DynamicTeleport.TeleportType
- java.lang.Object
-
- java.lang.Enum<DynamicTeleport.TeleportType>
-
- org.dreambot.api.methods.walking.web.node.impl.dynamic.DynamicTeleport.TeleportType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DynamicTeleport.TeleportType>
- Enclosing class:
- DynamicTeleport
public static enum DynamicTeleport.TeleportType extends java.lang.Enum<DynamicTeleport.TeleportType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DynamicTeleport.TeleportType
parseString(java.lang.String string)
java.lang.String
toString()
static DynamicTeleport.TeleportType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DynamicTeleport.TeleportType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RUNES
public static final DynamicTeleport.TeleportType RUNES
-
TAB
public static final DynamicTeleport.TeleportType TAB
-
HOME
public static final DynamicTeleport.TeleportType HOME
-
-
Method Detail
-
values
public static DynamicTeleport.TeleportType[] 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 (DynamicTeleport.TeleportType c : DynamicTeleport.TeleportType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DynamicTeleport.TeleportType 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
-
parseString
public static DynamicTeleport.TeleportType parseString(java.lang.String string)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<DynamicTeleport.TeleportType>
-
-