public enum CoordinatesType extends Enum<CoordinatesType>
| Enum Constant and Description |
|---|
CONTEXT_AS_IS
The coordinates should be used "as is" within the current context.
|
CONTEXT_RELATIVE
Coordinates are relative to the context.
|
SCREENSHOT_AS_IS
The coordinates should be used "as is" on the screenshot image.
|
| Modifier and Type | Method and Description |
|---|---|
static CoordinatesType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoordinatesType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoordinatesType SCREENSHOT_AS_IS
public static final CoordinatesType CONTEXT_AS_IS
public static final CoordinatesType CONTEXT_RELATIVE
public static CoordinatesType[] values()
for (CoordinatesType c : CoordinatesType.values()) System.out.println(c);
public static CoordinatesType 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 © 2023. All rights reserved.