org.kuali.ole.docstore.transaction
Enum TransactionManager.TransactionState
java.lang.Object
java.lang.Enum<TransactionManager.TransactionState>
org.kuali.ole.docstore.transaction.TransactionManager.TransactionState
- All Implemented Interfaces:
- Serializable, Comparable<TransactionManager.TransactionState>
- Enclosing class:
- TransactionManager
public static enum TransactionManager.TransactionState
- extends Enum<TransactionManager.TransactionState>
IDLE
public static final TransactionManager.TransactionState IDLE
STARTED
public static final TransactionManager.TransactionState STARTED
COMMITTED
public static final TransactionManager.TransactionState COMMITTED
ABORTED
public static final TransactionManager.TransactionState ABORTED
FAILED
public static final TransactionManager.TransactionState FAILED
values
public static TransactionManager.TransactionState[] 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 (TransactionManager.TransactionState c : TransactionManager.TransactionState.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TransactionManager.TransactionState 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 © 2004-2013 The Kuali Foundation. All Rights Reserved.