public enum ContainerTypeOrApplicationType extends Enum<ContainerTypeOrApplicationType>
| Enum Constant and Description |
|---|
EJB_APPLICATION |
EJB_CONTAINER |
JAVA_PERSISTENCE |
ORB_CONTAINER |
OTHER |
WEB_APPLICATION |
WEB_CONTAINER |
| Modifier and Type | Method and Description |
|---|---|
static ContainerTypeOrApplicationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerTypeOrApplicationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerTypeOrApplicationType WEB_CONTAINER
public static final ContainerTypeOrApplicationType EJB_CONTAINER
public static final ContainerTypeOrApplicationType ORB_CONTAINER
public static final ContainerTypeOrApplicationType WEB_APPLICATION
public static final ContainerTypeOrApplicationType EJB_APPLICATION
public static final ContainerTypeOrApplicationType JAVA_PERSISTENCE
public static final ContainerTypeOrApplicationType OTHER
public static ContainerTypeOrApplicationType[] values()
for (ContainerTypeOrApplicationType c : ContainerTypeOrApplicationType.values()) System.out.println(c);
public static ContainerTypeOrApplicationType 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 © 2017–2020 Eclipse Foundation. All rights reserved.