public enum SessionBeanType extends java.lang.Enum<SessionBeanType>
Enum Constant and Description |
---|
SINGLETON
A singleton (
jakarta.ejb.Singleton ) session bean |
STATEFUL
A stateful (
jakarta.ejb.Stateful ) session bean |
STATELESS
A stateless (
jakarta.ejb.Stateless ) session bean |
Modifier and Type | Method and Description |
---|---|
static SessionBeanType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SessionBeanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionBeanType STATELESS
jakarta.ejb.Stateless
) session beanpublic static final SessionBeanType STATEFUL
jakarta.ejb.Stateful
) session beanpublic static final SessionBeanType SINGLETON
jakarta.ejb.Singleton
) session beanpublic static SessionBeanType[] values()
for (SessionBeanType c : SessionBeanType.values()) System.out.println(c);
public static SessionBeanType 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