Enum TesterCloud.Status
- java.lang.Object
-
- java.lang.Enum<TesterCloud.Status>
-
- com.yahoo.vespa.hosted.controller.api.integration.deployment.TesterCloud.Status
-
- All Implemented Interfaces:
Serializable,Comparable<TesterCloud.Status>
- Enclosing interface:
- TesterCloud
public static enum TesterCloud.Status extends Enum<TesterCloud.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERRORThe tester encountered an exception.FAILURETests failed.INCONCLUSIVETests were inconclusive, and need to run again later.NOT_STARTEDTests have not yet started.RUNNINGTests are running.SUCCESSThe tests were successful.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TesterCloud.StatusvalueOf(String name)Returns the enum constant of this type with the specified name.static TesterCloud.Status[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_STARTED
public static final TesterCloud.Status NOT_STARTED
Tests have not yet started.
-
RUNNING
public static final TesterCloud.Status RUNNING
Tests are running.
-
FAILURE
public static final TesterCloud.Status FAILURE
Tests failed.
-
INCONCLUSIVE
public static final TesterCloud.Status INCONCLUSIVE
Tests were inconclusive, and need to run again later.
-
ERROR
public static final TesterCloud.Status ERROR
The tester encountered an exception.
-
SUCCESS
public static final TesterCloud.Status SUCCESS
The tests were successful.
-
-
Method Detail
-
values
public static TesterCloud.Status[] 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 (TesterCloud.Status c : TesterCloud.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TesterCloud.Status 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
-
-