org.eclipse.emf.cdo.transaction
Enum CDOTransactionFinishedEvent.Type
java.lang.Object
java.lang.Enum<CDOTransactionFinishedEvent.Type>
org.eclipse.emf.cdo.transaction.CDOTransactionFinishedEvent.Type
- All Implemented Interfaces:
- Serializable, Comparable<CDOTransactionFinishedEvent.Type>
- Enclosing interface:
- CDOTransactionFinishedEvent
- public static enum CDOTransactionFinishedEvent.Type
- extends Enum<CDOTransactionFinishedEvent.Type>
Enumerates the possible causes
for a transaction
to become finished.
COMMITTED
public static final CDOTransactionFinishedEvent.Type COMMITTED
ROLLED_BACK
public static final CDOTransactionFinishedEvent.Type ROLLED_BACK
values
public static CDOTransactionFinishedEvent.Type[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (CDOTransactionFinishedEvent.Type c : CDOTransactionFinishedEvent.Type.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static CDOTransactionFinishedEvent.Type valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.