Enum WebDriverKeepAliveSequence.KeepAliveState
- java.lang.Object
-
- java.lang.Enum<WebDriverKeepAliveSequence.KeepAliveState>
-
- eu.tsystems.mms.tic.testframework.utils.WebDriverKeepAliveSequence.KeepAliveState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WebDriverKeepAliveSequence.KeepAliveState>
- Enclosing class:
- WebDriverKeepAliveSequence
public static enum WebDriverKeepAliveSequence.KeepAliveState extends java.lang.Enum<WebDriverKeepAliveSequence.KeepAliveState>
State list.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REMOVED_BY_DRIVER_SHUTDOWNREMOVED_BY_TIMEOUTREMOVED_BY_USER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebDriverKeepAliveSequence.KeepAliveStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WebDriverKeepAliveSequence.KeepAliveState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REMOVED_BY_USER
public static final WebDriverKeepAliveSequence.KeepAliveState REMOVED_BY_USER
-
REMOVED_BY_TIMEOUT
public static final WebDriverKeepAliveSequence.KeepAliveState REMOVED_BY_TIMEOUT
-
REMOVED_BY_DRIVER_SHUTDOWN
public static final WebDriverKeepAliveSequence.KeepAliveState REMOVED_BY_DRIVER_SHUTDOWN
-
-
Method Detail
-
values
public static WebDriverKeepAliveSequence.KeepAliveState[] 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 (WebDriverKeepAliveSequence.KeepAliveState c : WebDriverKeepAliveSequence.KeepAliveState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebDriverKeepAliveSequence.KeepAliveState 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
-
-