Enum InputValueAction
- java.lang.Object
-
- java.lang.Enum<InputValueAction>
-
- org.uitnet.testing.smartfwk.core.validator.InputValueAction
-
- All Implemented Interfaces:
Serializable,Comparable<InputValueAction>
public enum InputValueAction extends Enum<InputValueAction>
- Author:
- Madhav Krishna
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKCHECK_ALLCOMMAND_KEYSDESELECTDESELECT_ALLMOUSE_CLICKMOUSE_DOUBLECLICKMOUSE_DRAG_DROPSELECTSELECT_ALLTYPEUNCHECKUNCHECK_ALL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAction()StringtoString()static InputValueActionvalueOf(String name)Returns the enum constant of this type with the specified name.static InputValueActionvalueOf2(String type)static InputValueAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPE
public static final InputValueAction TYPE
-
COMMAND_KEYS
public static final InputValueAction COMMAND_KEYS
-
MOUSE_CLICK
public static final InputValueAction MOUSE_CLICK
-
MOUSE_DOUBLECLICK
public static final InputValueAction MOUSE_DOUBLECLICK
-
MOUSE_DRAG_DROP
public static final InputValueAction MOUSE_DRAG_DROP
-
CHECK
public static final InputValueAction CHECK
-
CHECK_ALL
public static final InputValueAction CHECK_ALL
-
UNCHECK
public static final InputValueAction UNCHECK
-
UNCHECK_ALL
public static final InputValueAction UNCHECK_ALL
-
SELECT
public static final InputValueAction SELECT
-
SELECT_ALL
public static final InputValueAction SELECT_ALL
-
DESELECT
public static final InputValueAction DESELECT
-
DESELECT_ALL
public static final InputValueAction DESELECT_ALL
-
-
Method Detail
-
values
public static InputValueAction[] 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 (InputValueAction c : InputValueAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InputValueAction 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
-
getAction
public String getAction()
-
valueOf2
public static InputValueAction valueOf2(String type)
-
toString
public String toString()
- Overrides:
toStringin classEnum<InputValueAction>
-
-