public enum DeploymentOperationType extends Enum<DeploymentOperationType>
Java class for deploymentOperationType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="deploymentOperationType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="DEPLOY"/>
<enumeration value="UNDEPLOY"/>
<enumeration value="GET_INFO"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static DeploymentOperationType |
fromValue(String v) |
String |
value() |
static DeploymentOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentOperationType DEPLOY
public static final DeploymentOperationType UNDEPLOY
public static final DeploymentOperationType GET_INFO
public static DeploymentOperationType[] values()
for (DeploymentOperationType c : DeploymentOperationType.values()) System.out.println(c);
public static DeploymentOperationType 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 value()
public static DeploymentOperationType fromValue(String v)
Copyright © 2001–2015 JBoss by Red Hat. All rights reserved.