public static enum DeployDetails.PackageType extends java.lang.Enum<DeployDetails.PackageType>
| Enum Constant and Description |
|---|
ANT |
GENERIC |
GO |
GRADLE |
IVY |
MAVEN |
NPM |
| Modifier and Type | Method and Description |
|---|---|
static DeployDetails.PackageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeployDetails.PackageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeployDetails.PackageType GENERIC
public static final DeployDetails.PackageType MAVEN
public static final DeployDetails.PackageType ANT
public static final DeployDetails.PackageType IVY
public static final DeployDetails.PackageType GRADLE
public static final DeployDetails.PackageType GO
public static final DeployDetails.PackageType NPM
public static DeployDetails.PackageType[] values()
for (DeployDetails.PackageType c : DeployDetails.PackageType.values()) System.out.println(c);
public static DeployDetails.PackageType 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 null