Package com.applitools.eyes
Enum TestResultsStatus
- java.lang.Object
-
- java.lang.Enum<TestResultsStatus>
-
- com.applitools.eyes.TestResultsStatus
-
- All Implemented Interfaces:
Serializable,Comparable<TestResultsStatus>
public enum TestResultsStatus extends Enum<TestResultsStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DisabledFailedNotOpenedPassedUnresolved
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TestResultsStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static TestResultsStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Passed
public static final TestResultsStatus Passed
-
Unresolved
public static final TestResultsStatus Unresolved
-
Failed
public static final TestResultsStatus Failed
-
NotOpened
public static final TestResultsStatus NotOpened
-
Disabled
public static final TestResultsStatus Disabled
-
-
Method Detail
-
values
public static TestResultsStatus[] 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 (TestResultsStatus c : TestResultsStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TestResultsStatus 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
-
-