BuildAgent instead.public enum BuildType extends java.lang.Enum<BuildType>
| Enum Constant and Description |
|---|
ANT
Deprecated.
|
GENERIC
Deprecated.
|
GRADLE
Deprecated.
|
IVY
Deprecated.
|
MAVEN
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName()
Deprecated.
Returns the name of the build type
|
static BuildType |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static BuildType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuildType GENERIC
public static final BuildType MAVEN
public static final BuildType ANT
public static final BuildType IVY
public static final BuildType GRADLE
public static BuildType[] values()
for (BuildType c : BuildType.values()) System.out.println(c);
public static BuildType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getName()