public enum DirectionType extends java.lang.Enum<DirectionType>
Enum Constant and Description |
---|
ABOVE
The searched element is above the/any reference element.
|
BELOW
The searched element is below the/any reference element.
|
CLOSETO
The searched element is close to the/any reference element.
|
CLOSETOCLICKABLELABEL
The searched element is a select, checkbox or radio field close to the/any reference element.
|
CLOSETOLABEL
The searched element is an input field close to the/any reference element.
|
LEFTOF
The searched element is left to the/any reference element.
|
RIGHTOF
The searched element is right to the/any reference element.
|
Modifier and Type | Method and Description |
---|---|
static DirectionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DirectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectionType CLOSETO
public static final DirectionType CLOSETOLABEL
public static final DirectionType CLOSETOCLICKABLELABEL
public static final DirectionType ABOVE
public static final DirectionType BELOW
public static final DirectionType LEFTOF
public static final DirectionType RIGHTOF
public static DirectionType[] values()
for (DirectionType c : DirectionType.values()) System.out.println(c);
public static DirectionType 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