public enum DeploymentDataType extends Enum<DeploymentDataType>
| Enum Constant and Description |
|---|
deployment |
ejb3 |
entityBean |
jpa |
messageDrivenBean |
persistenceUnit |
servlet |
singletonBean |
statefulSessionBean |
statelessSessionBean |
subdeployment |
undertow |
unknown |
web |
webserviceEndpoint |
webservices |
| Modifier and Type | Method and Description |
|---|---|
static DeploymentDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeploymentDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeploymentDataType deployment
public static final DeploymentDataType subdeployment
public static final DeploymentDataType ejb3
public static final DeploymentDataType jpa
public static final DeploymentDataType undertow
public static final DeploymentDataType web
public static final DeploymentDataType webservices
public static final DeploymentDataType entityBean
public static final DeploymentDataType messageDrivenBean
public static final DeploymentDataType singletonBean
public static final DeploymentDataType statefulSessionBean
public static final DeploymentDataType statelessSessionBean
public static final DeploymentDataType persistenceUnit
public static final DeploymentDataType servlet
public static final DeploymentDataType webserviceEndpoint
public static final DeploymentDataType unknown
public static DeploymentDataType[] values()
for (DeploymentDataType c : DeploymentDataType.values()) System.out.println(c);
public static DeploymentDataType 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 © 2014 JBoss, a division of Red Hat. All rights reserved.