public static enum DomElement.IdentificationType extends Enum<DomElement.IdentificationType>
| Enum Constant and Description |
|---|
BY_ATTRIBUTE_VALUE |
BY_CLASS |
BY_CSS |
BY_ID |
BY_LINK_TEXT |
BY_NAME |
BY_VISIBLE_TEXT |
BY_X_PATH |
| Modifier and Type | Method and Description |
|---|---|
static DomElement.IdentificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DomElement.IdentificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DomElement.IdentificationType BY_LINK_TEXT
public static final DomElement.IdentificationType BY_X_PATH
public static final DomElement.IdentificationType BY_ID
public static final DomElement.IdentificationType BY_CLASS
public static final DomElement.IdentificationType BY_CSS
public static final DomElement.IdentificationType BY_NAME
public static final DomElement.IdentificationType BY_VISIBLE_TEXT
public static final DomElement.IdentificationType BY_ATTRIBUTE_VALUE
public static DomElement.IdentificationType[] values()
for (DomElement.IdentificationType c : DomElement.IdentificationType.values()) System.out.println(c);
public static DomElement.IdentificationType 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 © 2019. All rights reserved.