Enum MouseSetting
- java.lang.Object
-
- java.lang.Enum<MouseSetting>
-
- org.dreambot.api.methods.input.mouse.MouseSetting
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MouseSetting>
public enum MouseSetting extends java.lang.Enum<MouseSetting>
Created by Dreamliner on 10/20/2014.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLICK
LEFT_CLICK
MULTI_THREAD
OVERSHOOT
RIGHT_CLICK
WALK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MouseSetting
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MouseSetting[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OVERSHOOT
public static final MouseSetting OVERSHOOT
-
CLICK
public static final MouseSetting CLICK
-
RIGHT_CLICK
public static final MouseSetting RIGHT_CLICK
-
LEFT_CLICK
public static final MouseSetting LEFT_CLICK
-
MULTI_THREAD
public static final MouseSetting MULTI_THREAD
-
WALK
public static final MouseSetting WALK
-
-
Method Detail
-
values
public static MouseSetting[] 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 (MouseSetting c : MouseSetting.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MouseSetting 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
-
-