Enum DragAndDropOption
- java.lang.Object
-
- java.lang.Enum<DragAndDropOption>
-
- eu.tsystems.mms.tic.testframework.enums.DragAndDropOption
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DragAndDropOption>
public enum DragAndDropOption extends java.lang.Enum<DragAndDropOption>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLICK_AFTER_RELEASEDOUBLE_RELEASEDRAG_FROM_X_YDRAG_MOVE_CLICKANDHOLD_SEPERATEDROP_BY_RELATIVE_X_YEXTRA_MOVEEXTRA_SLEEPSSEPARATE_BUILDER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DragAndDropOptionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DragAndDropOption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRAG_FROM_X_Y
public static final DragAndDropOption DRAG_FROM_X_Y
-
DROP_BY_RELATIVE_X_Y
public static final DragAndDropOption DROP_BY_RELATIVE_X_Y
-
DRAG_MOVE_CLICKANDHOLD_SEPERATE
public static final DragAndDropOption DRAG_MOVE_CLICKANDHOLD_SEPERATE
-
CLICK_AFTER_RELEASE
public static final DragAndDropOption CLICK_AFTER_RELEASE
-
DOUBLE_RELEASE
public static final DragAndDropOption DOUBLE_RELEASE
-
EXTRA_MOVE
public static final DragAndDropOption EXTRA_MOVE
-
SEPARATE_BUILDER
public static final DragAndDropOption SEPARATE_BUILDER
-
EXTRA_SLEEPS
public static final DragAndDropOption EXTRA_SLEEPS
-
-
Method Detail
-
values
public static DragAndDropOption[] 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 (DragAndDropOption c : DragAndDropOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DragAndDropOption valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-