public enum PersistenceContextTypeTypeBase extends java.lang.Enum<PersistenceContextTypeTypeBase>
Webapp30Package.getPersistenceContextTypeTypeBase()| Enum Constant and Description |
|---|
EXTENDED
The 'Extended' literal object.
|
TRANSACTION
The 'Transaction' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
EXTENDED_VALUE
The 'Extended' literal value.
|
static int |
TRANSACTION_VALUE
The 'Transaction' literal value.
|
static java.util.List<PersistenceContextTypeTypeBase> |
VALUES
A public read-only list of all the 'Persistence Context Type Type Base' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static PersistenceContextTypeTypeBase |
get(int value)
Returns the 'Persistence Context Type Type Base' literal with the specified integer value.
|
static PersistenceContextTypeTypeBase |
get(java.lang.String literal)
Returns the 'Persistence Context Type Type Base' literal with the specified literal value.
|
static PersistenceContextTypeTypeBase |
getByName(java.lang.String name)
Returns the 'Persistence Context 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 PersistenceContextTypeTypeBase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PersistenceContextTypeTypeBase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PersistenceContextTypeTypeBase TRANSACTION
TRANSACTION_VALUEpublic static final PersistenceContextTypeTypeBase EXTENDED
EXTENDED_VALUEpublic static final int TRANSACTION_VALUE
If the meaning of 'Transaction' literal object isn't clear, there really should be more of a description here...
TRANSACTION,
Constant Field Valuespublic static final int EXTENDED_VALUE
If the meaning of 'Extended' literal object isn't clear, there really should be more of a description here...
EXTENDED,
Constant Field Valuespublic static final java.util.List<PersistenceContextTypeTypeBase> VALUES
public static PersistenceContextTypeTypeBase[] values()
for (PersistenceContextTypeTypeBase c : PersistenceContextTypeTypeBase.values()) System.out.println(c);
public static PersistenceContextTypeTypeBase 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 PersistenceContextTypeTypeBase get(java.lang.String literal)
public static PersistenceContextTypeTypeBase getByName(java.lang.String name)
public static PersistenceContextTypeTypeBase 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<PersistenceContextTypeTypeBase>