Enum MouseEventHandler.MouseEventType
java.lang.Object
java.lang.Enum<MouseEventHandler.MouseEventType>
jp.vmi.selenium.selenese.subcommand.MouseEventHandler.MouseEventType
- All Implemented Interfaces:
Serializable,Comparable<MouseEventHandler.MouseEventType>
- Enclosing class:
- MouseEventHandler
public static enum MouseEventHandler.MouseEventType extends Enum<MouseEventHandler.MouseEventType>
-
Enum Constant Summary
Enum Constants Enum Constant Description MOUSE_DOWNMOUSE_DOWN_ATMOUSE_MOVEMOUSE_MOVE_ATMOUSE_OUTMOUSE_OVERMOUSE_UPMOUSE_UP_AT -
Method Summary
Modifier and Type Method Description static MouseEventHandler.MouseEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MouseEventHandler.MouseEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
MOUSE_OVER
-
MOUSE_OUT
-
MOUSE_MOVE
-
MOUSE_MOVE_AT
-
MOUSE_DOWN
-
MOUSE_DOWN_AT
-
MOUSE_UP
-
MOUSE_UP_AT
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-