public enum ClickStrategy extends Enum<ClickStrategy>
| Enum Constant and Description |
|---|
IMMEDIATE |
WAIT_UNTIL_ENABLED |
WAIT_UNTIL_PRESENT |
| Modifier and Type | Method and Description |
|---|---|
static ClickStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClickStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClickStrategy IMMEDIATE
public static final ClickStrategy WAIT_UNTIL_PRESENT
public static final ClickStrategy WAIT_UNTIL_ENABLED
public static ClickStrategy[] values()
for (ClickStrategy c : ClickStrategy.values()) System.out.println(c);
public static ClickStrategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.