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
All Methods Static Methods Concrete Methods 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 Detail
-
MOUSE_OVER
public static final MouseEventHandler.MouseEventType MOUSE_OVER
-
MOUSE_OUT
public static final MouseEventHandler.MouseEventType MOUSE_OUT
-
MOUSE_MOVE
public static final MouseEventHandler.MouseEventType MOUSE_MOVE
-
MOUSE_MOVE_AT
public static final MouseEventHandler.MouseEventType MOUSE_MOVE_AT
-
MOUSE_DOWN
public static final MouseEventHandler.MouseEventType MOUSE_DOWN
-
MOUSE_DOWN_AT
public static final MouseEventHandler.MouseEventType MOUSE_DOWN_AT
-
MOUSE_UP
public static final MouseEventHandler.MouseEventType MOUSE_UP
-
MOUSE_UP_AT
public static final MouseEventHandler.MouseEventType MOUSE_UP_AT
-
-
Method Detail
-
values
public static MouseEventHandler.MouseEventType[] 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 (MouseEventHandler.MouseEventType c : MouseEventHandler.MouseEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MouseEventHandler.MouseEventType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-