public static enum DragAndDropOptions.DragAndDropMethod extends java.lang.Enum<DragAndDropOptions.DragAndDropMethod>
Enum Constant and Description |
---|
ACTIONS
Executing drag and drop via Selenium Actions
|
JS
Executing drag and drop via JS script
|
Modifier and Type | Method and Description |
---|---|
static DragAndDropOptions.DragAndDropMethod |
valueOf(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.
|
public static final DragAndDropOptions.DragAndDropMethod ACTIONS
public static final DragAndDropOptions.DragAndDropMethod JS
public static DragAndDropOptions.DragAndDropMethod[] values()
for (DragAndDropOptions.DragAndDropMethod c : DragAndDropOptions.DragAndDropMethod.values()) System.out.println(c);
public static DragAndDropOptions.DragAndDropMethod valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null