Enum MouseEventName
- java.lang.Object
-
- java.lang.Enum<MouseEventName>
-
- org.uitnet.testing.smartfwk.ui.core.events.MouseEventName
-
- All Implemented Interfaces:
Serializable,Comparable<MouseEventName>
public enum MouseEventName extends Enum<MouseEventName>
- Author:
- Madhav Krishna
-
-
Enum Constant Summary
Enum Constants Enum Constant Description mouseClickmouseClickAndHoldmouseDoubleClickmouseReleasemouseRightClick
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MouseEventNamevalueOf(String name)Returns the enum constant of this type with the specified name.static MouseEventName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
mouseClick
public static final MouseEventName mouseClick
-
mouseClickAndHold
public static final MouseEventName mouseClickAndHold
-
mouseRelease
public static final MouseEventName mouseRelease
-
mouseDoubleClick
public static final MouseEventName mouseDoubleClick
-
mouseRightClick
public static final MouseEventName mouseRightClick
-
-
Method Detail
-
values
public static MouseEventName[] 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 (MouseEventName c : MouseEventName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MouseEventName 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
-
-