Package com.codeborne.selenide
Enum DragAndDropOptions.DragAndDropMethod
- java.lang.Object
-
- java.lang.Enum<DragAndDropOptions.DragAndDropMethod>
-
- com.codeborne.selenide.DragAndDropOptions.DragAndDropMethod
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DragAndDropOptions.DragAndDropMethod>
- Enclosing class:
- DragAndDropOptions
public static enum DragAndDropOptions.DragAndDropMethod extends java.lang.Enum<DragAndDropOptions.DragAndDropMethod>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DragAndDropOptions.DragAndDropMethodvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DragAndDropOptions.DragAndDropMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIONS
public static final DragAndDropOptions.DragAndDropMethod ACTIONS
Executing drag and drop via Selenium Actions
-
JS
public static final DragAndDropOptions.DragAndDropMethod JS
Executing drag and drop via JS script
-
-
Method Detail
-
values
public static DragAndDropOptions.DragAndDropMethod[] 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 (DragAndDropOptions.DragAndDropMethod c : DragAndDropOptions.DragAndDropMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DragAndDropOptions.DragAndDropMethod 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
-
-