Package org.ndviet.library
Enum Waiting.Element
- java.lang.Object
-
- java.lang.Enum<Waiting.Element>
-
- org.ndviet.library.Waiting.Element
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Waiting.Element>
- Enclosing class:
- Waiting
protected static enum Waiting.Element extends java.lang.Enum<Waiting.Element>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ELEMENT_TO_BE_CLICKABLEPRESENCE_OF_ELEMENT_LOCATEDVISIBILITY_OFVISIBILITY_OF_ELEMENT_LOCATED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Waiting.ElementvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Waiting.Element[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRESENCE_OF_ELEMENT_LOCATED
public static final Waiting.Element PRESENCE_OF_ELEMENT_LOCATED
-
ELEMENT_TO_BE_CLICKABLE
public static final Waiting.Element ELEMENT_TO_BE_CLICKABLE
-
VISIBILITY_OF
public static final Waiting.Element VISIBILITY_OF
-
VISIBILITY_OF_ELEMENT_LOCATED
public static final Waiting.Element VISIBILITY_OF_ELEMENT_LOCATED
-
-
Method Detail
-
values
public static Waiting.Element[] 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 (Waiting.Element c : Waiting.Element.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Waiting.Element valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-