public enum DeploymentPhase extends Enum<DeploymentPhase>
| Enum Constant and Description |
|---|
INSTALL |
START |
STOP |
UNINSTALL |
UPGRADE |
| Modifier and Type | Field and Description |
|---|---|
static DeploymentPhase[] |
DEPLOY_LIFECYCLE |
static DeploymentPhase[] |
REDEPLOY_LIFECYCLE |
static DeploymentPhase[] |
UNDEPLOY_LIFECYCLE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DeploymentPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentPhase INSTALL
public static final DeploymentPhase START
public static final DeploymentPhase STOP
public static final DeploymentPhase UPGRADE
public static final DeploymentPhase UNINSTALL
public static final DeploymentPhase[] DEPLOY_LIFECYCLE
public static final DeploymentPhase[] REDEPLOY_LIFECYCLE
public static final DeploymentPhase[] UNDEPLOY_LIFECYCLE
public static DeploymentPhase[] values()
for (DeploymentPhase c : DeploymentPhase.values()) System.out.println(c);
public static DeploymentPhase 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 String toString()
toString in class Enum<DeploymentPhase>Copyright © 2008-2013 Red Hat, Inc.. All Rights Reserved.