public enum ArgumentType extends Enum<ArgumentType>
| Enum Constant and Description |
|---|
ATTRIBUTE_LOCATOR
Attribute locator (with '@attribute_name')
|
CSS_LOCATOR
CSS locator (implies "css=")
|
LOCATOR
Locator
|
OPTION_LOCATOR
Option locator
|
VALUE
Value not locator
|
| Modifier and Type | Method and Description |
|---|---|
static ArgumentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArgumentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArgumentType VALUE
public static final ArgumentType LOCATOR
public static final ArgumentType ATTRIBUTE_LOCATOR
public static final ArgumentType CSS_LOCATOR
public static final ArgumentType OPTION_LOCATOR
public static ArgumentType[] values()
for (ArgumentType c : ArgumentType.values()) System.out.println(c);
public static ArgumentType 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 © 2017. All rights reserved.