Enum TestJobDetails.Builder
- java.lang.Object
-
- java.lang.Enum<TestJobDetails.Builder>
-
- com.atlassian.bamboo.testutils.model.TestJobDetails.Builder
-
- All Implemented Interfaces:
Serializable
,Comparable<TestJobDetails.Builder>
- Enclosing class:
- TestJobDetails
public static enum TestJobDetails.Builder extends Enum<TestJobDetails.Builder>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TestJobDetails.Builder
valueOf(String name)
Returns the enum constant of this type with the specified name.static TestJobDetails.Builder[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANT
public static final TestJobDetails.Builder ANT
-
MAVEN
public static final TestJobDetails.Builder MAVEN
-
MAVEN2
public static final TestJobDetails.Builder MAVEN2
-
MAVEN3
public static final TestJobDetails.Builder MAVEN3
-
SCRIPT
public static final TestJobDetails.Builder SCRIPT
-
NONE
public static final TestJobDetails.Builder NONE
-
-
Method Detail
-
values
public static TestJobDetails.Builder[] 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 (TestJobDetails.Builder c : TestJobDetails.Builder.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TestJobDetails.Builder 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
-
-