public static enum Deployment.Type extends Enum<Deployment.Type>
| Enum Constant and Description |
|---|
DEPLOY |
FORCE_DEPLOY |
REDEPLOY |
UNDEPLOY |
UNDEPLOY_IGNORE_MISSING |
| Modifier and Type | Method and Description |
|---|---|
static Deployment.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Deployment.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Deployment.Type DEPLOY
public static final Deployment.Type FORCE_DEPLOY
public static final Deployment.Type UNDEPLOY
public static final Deployment.Type UNDEPLOY_IGNORE_MISSING
public static final Deployment.Type REDEPLOY
public static Deployment.Type[] values()
for (Deployment.Type c : Deployment.Type.values()) System.out.println(c);
public static Deployment.Type 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 nullCopyright © 2016 JBoss by Red Hat. All rights reserved.