public static enum ElementFinder.Type extends Enum<ElementFinder.Type>
| Modifier and Type | Method and Description |
|---|---|
static ElementFinder.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementFinder.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementFinder.Type RIGHT
public static final ElementFinder.Type LEFT
public static final ElementFinder.Type ABOVE
public static final ElementFinder.Type BELOW
public static final ElementFinder.Type NEAR
public static ElementFinder.Type[] values()
for (ElementFinder.Type c : ElementFinder.Type.values()) System.out.println(c);
public static ElementFinder.Type 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 © 2020. All rights reserved.