public enum SessionTypeTypeBase extends java.lang.Enum<SessionTypeTypeBase>
EjbJar21Package.getSessionTypeTypeBase()| Enum Constant and Description |
|---|
STATEFUL
The 'Stateful' literal object.
|
STATELESS
The 'Stateless' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
STATEFUL_VALUE
The 'Stateful' literal value.
|
static int |
STATELESS_VALUE
The 'Stateless' literal value.
|
static java.util.List<SessionTypeTypeBase> |
VALUES
A public read-only list of all the 'Session Type Type Base' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static SessionTypeTypeBase |
get(int value)
Returns the 'Session Type Type Base' literal with the specified integer value.
|
static SessionTypeTypeBase |
get(java.lang.String literal)
Returns the 'Session Type Type Base' literal with the specified literal value.
|
static SessionTypeTypeBase |
getByName(java.lang.String name)
Returns the 'Session Type Type Base' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static SessionTypeTypeBase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SessionTypeTypeBase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionTypeTypeBase STATEFUL
STATEFUL_VALUEpublic static final SessionTypeTypeBase STATELESS
STATELESS_VALUEpublic static final int STATEFUL_VALUE
If the meaning of 'Stateful' literal object isn't clear, there really should be more of a description here...
STATEFUL,
Constant Field Valuespublic static final int STATELESS_VALUE
If the meaning of 'Stateless' literal object isn't clear, there really should be more of a description here...
STATELESS,
Constant Field Valuespublic static final java.util.List<SessionTypeTypeBase> VALUES
public static SessionTypeTypeBase[] values()
for (SessionTypeTypeBase c : SessionTypeTypeBase.values()) System.out.println(c);
public static SessionTypeTypeBase 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 nullpublic static SessionTypeTypeBase get(java.lang.String literal)
public static SessionTypeTypeBase getByName(java.lang.String name)
public static SessionTypeTypeBase get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString in class java.lang.Enum<SessionTypeTypeBase>