Package com.epam.healenium
Enum SelectorComponent
- java.lang.Object
-
- java.lang.Enum<SelectorComponent>
-
- com.epam.healenium.SelectorComponent
-
- All Implemented Interfaces:
Serializable,Comparable<SelectorComponent>
public enum SelectorComponent extends Enum<SelectorComponent>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringcreateComponent(com.epam.healenium.treecomparing.Node node)static SelectorComponentvalueOf(String name)Returns the enum constant of this type with the specified name.static SelectorComponent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PATH
public static final SelectorComponent PATH
-
PARENT
public static final SelectorComponent PARENT
-
TAG
public static final SelectorComponent TAG
-
ID
public static final SelectorComponent ID
-
CLASS
public static final SelectorComponent CLASS
-
POSITION
public static final SelectorComponent POSITION
-
ATTRIBUTES
public static final SelectorComponent ATTRIBUTES
-
-
Method Detail
-
values
public static SelectorComponent[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SelectorComponent c : SelectorComponent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SelectorComponent valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
createComponent
public String createComponent(com.epam.healenium.treecomparing.Node node)
-
-