org.eclipse.modisco.jee.ejbjar.EjbJar31
Enum IsolationLevelType

java.lang.Object
  extended by java.lang.Enum<IsolationLevelType>
      extended by org.eclipse.modisco.jee.ejbjar.EjbJar31.IsolationLevelType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IsolationLevelType>

public enum IsolationLevelType
extends java.lang.Enum<IsolationLevelType>

A representation of the literals of the enumeration 'Isolation Level Type', and utility methods for working with them. The following transaction isolation levels are allowed (see documentation for the java.sql.Connection interface): TRANSACTION_READ_UNCOMMITTED TRANSACTION_READ_COMMITTED TRANSACTION_REPEATABLE_READ TRANSACTION_SERIALIZABLE

See Also:
EjbJar31Package.getIsolationLevelType()
Generated:
Model:
extendedMetaData="name='isolation-levelType'"

Enum Constant Summary
TRANSACTIONREADCOMMITTED
          The 'TRANSACTIONREADCOMMITTED' literal object.
TRANSACTIONREADUNCOMMITTED
          The 'TRANSACTIONREADUNCOMMITTED' literal object.
TRANSACTIONREPEATABLEREAD
          The 'TRANSACTIONREPEATABLEREAD' literal object.
TRANSACTIONSERIALIZABLE
          The 'TRANSACTIONSERIALIZABLE' literal object.
 
Field Summary
static int TRANSACTIONREADCOMMITTED_VALUE
          The 'TRANSACTIONREADCOMMITTED' literal value.
static int TRANSACTIONREADUNCOMMITTED_VALUE
          The 'TRANSACTIONREADUNCOMMITTED' literal value.
static int TRANSACTIONREPEATABLEREAD_VALUE
          The 'TRANSACTIONREPEATABLEREAD' literal value.
static int TRANSACTIONSERIALIZABLE_VALUE
          The 'TRANSACTIONSERIALIZABLE' literal value.
static java.util.List<IsolationLevelType> VALUES
          A public read-only list of all the 'Isolation Level Type' enumerators.
 
Method Summary
static IsolationLevelType get(int value)
          Returns the 'Isolation Level Type' literal with the specified integer value.
static IsolationLevelType get(java.lang.String literal)
          Returns the 'Isolation Level Type' literal with the specified literal value.
static IsolationLevelType getByName(java.lang.String name)
          Returns the 'Isolation Level Type' 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 IsolationLevelType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IsolationLevelType[] values()
          Returns an array containing the constants of this enum type, in the order they're 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

TRANSACTIONREADUNCOMMITTED

public static final IsolationLevelType TRANSACTIONREADUNCOMMITTED
The 'TRANSACTIONREADUNCOMMITTED' literal object.

See Also:
TRANSACTIONREADUNCOMMITTED_VALUE
Generated:
Ordered:

TRANSACTIONREADCOMMITTED

public static final IsolationLevelType TRANSACTIONREADCOMMITTED
The 'TRANSACTIONREADCOMMITTED' literal object.

See Also:
TRANSACTIONREADCOMMITTED_VALUE
Generated:
Ordered:

TRANSACTIONREPEATABLEREAD

public static final IsolationLevelType TRANSACTIONREPEATABLEREAD
The 'TRANSACTIONREPEATABLEREAD' literal object.

See Also:
TRANSACTIONREPEATABLEREAD_VALUE
Generated:
Ordered:

TRANSACTIONSERIALIZABLE

public static final IsolationLevelType TRANSACTIONSERIALIZABLE
The 'TRANSACTIONSERIALIZABLE' literal object.

See Also:
TRANSACTIONSERIALIZABLE_VALUE
Generated:
Ordered:
Field Detail

TRANSACTIONREADUNCOMMITTED_VALUE

public static final int TRANSACTIONREADUNCOMMITTED_VALUE
The 'TRANSACTIONREADUNCOMMITTED' literal value.

If the meaning of 'TRANSACTIONREADUNCOMMITTED' literal object isn't clear, there really should be more of a description here...

See Also:
TRANSACTIONREADUNCOMMITTED, Constant Field Values
Generated:
Model:
literal="TRANSACTION_READ_UNCOMMITTED"
Ordered:

TRANSACTIONREADCOMMITTED_VALUE

public static final int TRANSACTIONREADCOMMITTED_VALUE
The 'TRANSACTIONREADCOMMITTED' literal value.

If the meaning of 'TRANSACTIONREADCOMMITTED' literal object isn't clear, there really should be more of a description here...

See Also:
TRANSACTIONREADCOMMITTED, Constant Field Values
Generated:
Model:
literal="TRANSACTION_READ_COMMITTED"
Ordered:

TRANSACTIONREPEATABLEREAD_VALUE

public static final int TRANSACTIONREPEATABLEREAD_VALUE
The 'TRANSACTIONREPEATABLEREAD' literal value.

If the meaning of 'TRANSACTIONREPEATABLEREAD' literal object isn't clear, there really should be more of a description here...

See Also:
TRANSACTIONREPEATABLEREAD, Constant Field Values
Generated:
Model:
literal="TRANSACTION_REPEATABLE_READ"
Ordered:

TRANSACTIONSERIALIZABLE_VALUE

public static final int TRANSACTIONSERIALIZABLE_VALUE
The 'TRANSACTIONSERIALIZABLE' literal value.

If the meaning of 'TRANSACTIONSERIALIZABLE' literal object isn't clear, there really should be more of a description here...

See Also:
TRANSACTIONSERIALIZABLE, Constant Field Values
Generated:
Model:
literal="TRANSACTION_SERIALIZABLE"
Ordered:

VALUES

public static final java.util.List<IsolationLevelType> VALUES
A public read-only list of all the 'Isolation Level Type' enumerators.

Generated:
Method Detail

values

public static final IsolationLevelType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(IsolationLevelType c : IsolationLevelType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static IsolationLevelType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

get

public static IsolationLevelType get(java.lang.String literal)
Returns the 'Isolation Level Type' literal with the specified literal value.

Generated:

getByName

public static IsolationLevelType getByName(java.lang.String name)
Returns the 'Isolation Level Type' literal with the specified name.

Generated:

get

public static IsolationLevelType get(int value)
Returns the 'Isolation Level Type' literal with the specified integer value.

Generated:

getValue

public int getValue()

Generated:

getName

public java.lang.String getName()

Generated:

getLiteral

public java.lang.String getLiteral()

Generated:

toString

public java.lang.String toString()
Returns the literal value of the enumerator, which is its string representation.

Overrides:
toString in class java.lang.Enum<IsolationLevelType>
Generated: