Package core.support.objects
Enum ActionObject.ACTION
- java.lang.Object
-
- java.lang.Enum<ActionObject.ACTION>
-
- core.support.objects.ActionObject.ACTION
-
- All Implemented Interfaces:
Serializable,Comparable<ActionObject.ACTION>
- Enclosing class:
- ActionObject
public static enum ActionObject.ACTION extends Enum<ActionObject.ACTION>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BUTTONBUTTON_WAIT_FIRST_ELEMENTFIELDOPTIONAL_BUTTONOPTIONAL_CLICK_AND_EXPECTOPTIONAL_FIELDSUBMITVERIFY_TEXTWAIT_EITHER_ELEMENTWAIT_ELEMENT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActionObject.ACTIONvalueOf(String name)Returns the enum constant of this type with the specified name.static ActionObject.ACTION[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIELD
public static final ActionObject.ACTION FIELD
-
SUBMIT
public static final ActionObject.ACTION SUBMIT
-
BUTTON
public static final ActionObject.ACTION BUTTON
-
OPTIONAL_BUTTON
public static final ActionObject.ACTION OPTIONAL_BUTTON
-
OPTIONAL_FIELD
public static final ActionObject.ACTION OPTIONAL_FIELD
-
BUTTON_WAIT_FIRST_ELEMENT
public static final ActionObject.ACTION BUTTON_WAIT_FIRST_ELEMENT
-
WAIT_ELEMENT
public static final ActionObject.ACTION WAIT_ELEMENT
-
WAIT_EITHER_ELEMENT
public static final ActionObject.ACTION WAIT_EITHER_ELEMENT
-
VERIFY_TEXT
public static final ActionObject.ACTION VERIFY_TEXT
-
OPTIONAL_CLICK_AND_EXPECT
public static final ActionObject.ACTION OPTIONAL_CLICK_AND_EXPECT
-
-
Method Detail
-
values
public static ActionObject.ACTION[] 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 (ActionObject.ACTION c : ActionObject.ACTION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionObject.ACTION 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
-
-