public enum ContainerType extends java.lang.Enum<ContainerType>
Enum Constant and Description |
---|
BMP_ENTITY |
CMP_ENTITY |
MESSAGE_DRIVEN |
SINGLETON |
STATEFUL |
STATELESS |
Modifier and Type | Method and Description |
---|---|
static ContainerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContainerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerType STATELESS
public static final ContainerType SINGLETON
public static final ContainerType STATEFUL
public static final ContainerType BMP_ENTITY
public static final ContainerType CMP_ENTITY
public static final ContainerType MESSAGE_DRIVEN
public static ContainerType[] values()
for (ContainerType c : ContainerType.values()) System.out.println(c);
public static ContainerType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null