public enum DeploymentType extends Enum<DeploymentType>
| Enum Constant and Description |
|---|
AUTO |
EMPTY |
FTP |
JAR |
MSDEPLOY |
NONE |
WAR |
ZIP |
| Modifier and Type | Field and Description |
|---|---|
static String |
UNKNOWN_DEPLOYMENT_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static DeploymentType |
fromString(String input) |
static DeploymentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentType FTP
public static final DeploymentType ZIP
public static final DeploymentType WAR
public static final DeploymentType JAR
public static final DeploymentType AUTO
public static final DeploymentType NONE
public static final DeploymentType EMPTY
public static final DeploymentType MSDEPLOY
public static final String UNKNOWN_DEPLOYMENT_TYPE
public static DeploymentType[] values()
for (DeploymentType c : DeploymentType.values()) System.out.println(c);
public static DeploymentType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static DeploymentType fromString(String input) throws org.apache.maven.plugin.MojoExecutionException
org.apache.maven.plugin.MojoExecutionExceptionCopyright © 2018. All rights reserved.