|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<LockModeType_2_0>
org.eclipse.jpt.jpa.core.resource.orm.v2_0.LockModeType_2_0
public enum LockModeType_2_0
A representation of the literals of the enumeration 'Lock Mode Type 20', and utility methods for working with them. Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.
OrmV2_0Package.getLockModeType_2_0()| Enum Constant Summary | |
|---|---|
NONE
The 'NONE' literal object. |
|
OPTIMISTIC
The 'OPTIMISTIC' literal object. |
|
OPTIMISTIC_FORCE_INCREMENT
The 'OPTIMISTIC FORCE INCREMENT' literal object. |
|
PESSIMISTIC_FORCE_INCREMENT
The 'PESSIMISTIC FORCE INCREMENT' literal object. |
|
PESSIMISTIC_READ
The 'PESSIMISTIC READ' literal object. |
|
PESSIMISTIC_WRITE
The 'PESSIMISTIC WRITE' literal object. |
|
READ
The 'READ' literal object. |
|
WRITE
The 'WRITE' literal object. |
|
| Field Summary | |
|---|---|
static int |
NONE_VALUE
The 'NONE' literal value. |
static int |
OPTIMISTIC_FORCE_INCREMENT_VALUE
The 'OPTIMISTIC FORCE INCREMENT' literal value. |
static int |
OPTIMISTIC_VALUE
The 'OPTIMISTIC' literal value. |
static int |
PESSIMISTIC_FORCE_INCREMENT_VALUE
The 'PESSIMISTIC FORCE INCREMENT' literal value. |
static int |
PESSIMISTIC_READ_VALUE
The 'PESSIMISTIC READ' literal value. |
static int |
PESSIMISTIC_WRITE_VALUE
The 'PESSIMISTIC WRITE' literal value. |
static int |
READ_VALUE
The 'READ' literal value. |
static java.util.List<LockModeType_2_0> |
VALUES
A public read-only list of all the 'Lock Mode Type 20' enumerators. |
static int |
WRITE_VALUE
The 'WRITE' literal value. |
| Method Summary | |
|---|---|
static LockModeType_2_0 |
get(int value)
Returns the 'Lock Mode Type 20' literal with the specified integer value. |
static LockModeType_2_0 |
get(java.lang.String literal)
Returns the 'Lock Mode Type 20' literal with the specified literal value. |
static LockModeType_2_0 |
getByName(java.lang.String name)
Returns the 'Lock Mode Type 20' 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 LockModeType_2_0 |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static LockModeType_2_0[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final LockModeType_2_0 NONE
NONE_VALUEpublic static final LockModeType_2_0 READ
READ_VALUEpublic static final LockModeType_2_0 WRITE
WRITE_VALUEpublic static final LockModeType_2_0 OPTIMISTIC
OPTIMISTIC_VALUEpublic static final LockModeType_2_0 OPTIMISTIC_FORCE_INCREMENT
OPTIMISTIC_FORCE_INCREMENT_VALUEpublic static final LockModeType_2_0 PESSIMISTIC_READ
PESSIMISTIC_READ_VALUEpublic static final LockModeType_2_0 PESSIMISTIC_WRITE
PESSIMISTIC_WRITE_VALUEpublic static final LockModeType_2_0 PESSIMISTIC_FORCE_INCREMENT
PESSIMISTIC_FORCE_INCREMENT_VALUE| Field Detail |
|---|
public static final int NONE_VALUE
If the meaning of 'NONE' literal object isn't clear, there really should be more of a description here...
NONE,
Constant Field Valuespublic static final int READ_VALUE
If the meaning of 'READ' literal object isn't clear, there really should be more of a description here...
READ,
Constant Field Valuespublic static final int WRITE_VALUE
If the meaning of 'WRITE' literal object isn't clear, there really should be more of a description here...
WRITE,
Constant Field Valuespublic static final int OPTIMISTIC_VALUE
If the meaning of 'OPTIMISTIC' literal object isn't clear, there really should be more of a description here...
OPTIMISTIC,
Constant Field Valuespublic static final int OPTIMISTIC_FORCE_INCREMENT_VALUE
If the meaning of 'OPTIMISTIC FORCE INCREMENT' literal object isn't clear, there really should be more of a description here...
OPTIMISTIC_FORCE_INCREMENT,
Constant Field Valuespublic static final int PESSIMISTIC_READ_VALUE
If the meaning of 'PESSIMISTIC READ' literal object isn't clear, there really should be more of a description here...
PESSIMISTIC_READ,
Constant Field Valuespublic static final int PESSIMISTIC_WRITE_VALUE
If the meaning of 'PESSIMISTIC WRITE' literal object isn't clear, there really should be more of a description here...
PESSIMISTIC_WRITE,
Constant Field Valuespublic static final int PESSIMISTIC_FORCE_INCREMENT_VALUE
If the meaning of 'PESSIMISTIC FORCE INCREMENT' literal object isn't clear, there really should be more of a description here...
PESSIMISTIC_FORCE_INCREMENT,
Constant Field Valuespublic static final java.util.List<LockModeType_2_0> VALUES
| Method Detail |
|---|
public static LockModeType_2_0[] values()
for (LockModeType_2_0 c : LockModeType_2_0.values()) System.out.println(c);
public static LockModeType_2_0 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 name
java.lang.NullPointerException - if the argument is nullpublic static LockModeType_2_0 get(java.lang.String literal)
public static LockModeType_2_0 getByName(java.lang.String name)
public static LockModeType_2_0 get(int value)
public int getValue()
getValue in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getName()
getName in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String getLiteral()
getLiteral in interface org.eclipse.emf.common.util.Enumeratorpublic java.lang.String toString()
toString in class java.lang.Enum<LockModeType_2_0>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||