Enum TransactionStatus
- java.lang.Object
-
- java.lang.Enum<TransactionStatus>
-
- org.hibernate.resource.transaction.spi.TransactionStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<TransactionStatus>
public enum TransactionStatus extends Enum<TransactionStatus>
Enumeration of statuses in which a transaction facade (Transaction
) might be.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE
The transaction has been started, but not yet completed.COMMITTED
The transaction has been completed successfully.COMMITTING
Status code indicating a transaction that has begun the second phase of the two-phase commit protocol, but not yet completed this phase.FAILED_COMMIT
The transaction attempted to commit, but failed.FAILED_ROLLBACK
The transaction attempted to rollback, but failed.MARKED_ROLLBACK
The transaction has been marked for rollback only.NOT_ACTIVE
The transaction has not yet been started.ROLLED_BACK
The transaction has been rolled back.ROLLING_BACK
Status code indicating a transaction that is in the process of rolling back.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canRollback()
boolean
isNotOneOf(TransactionStatus... statuses)
boolean
isOneOf(TransactionStatus... statuses)
static TransactionStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static TransactionStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_ACTIVE
public static final TransactionStatus NOT_ACTIVE
The transaction has not yet been started.
-
ACTIVE
public static final TransactionStatus ACTIVE
The transaction has been started, but not yet completed.
-
COMMITTED
public static final TransactionStatus COMMITTED
The transaction has been completed successfully.
-
ROLLED_BACK
public static final TransactionStatus ROLLED_BACK
The transaction has been rolled back.
-
MARKED_ROLLBACK
public static final TransactionStatus MARKED_ROLLBACK
The transaction has been marked for rollback only.
-
FAILED_COMMIT
public static final TransactionStatus FAILED_COMMIT
The transaction attempted to commit, but failed.
-
FAILED_ROLLBACK
public static final TransactionStatus FAILED_ROLLBACK
The transaction attempted to rollback, but failed.
-
COMMITTING
public static final TransactionStatus COMMITTING
Status code indicating a transaction that has begun the second phase of the two-phase commit protocol, but not yet completed this phase.
-
ROLLING_BACK
public static final TransactionStatus ROLLING_BACK
Status code indicating a transaction that is in the process of rolling back.
-
-
Method Detail
-
values
public static TransactionStatus[] 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 (TransactionStatus c : TransactionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransactionStatus 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 nameNullPointerException
- if the argument is null
-
isOneOf
public boolean isOneOf(TransactionStatus... statuses)
-
isNotOneOf
public boolean isNotOneOf(TransactionStatus... statuses)
-
canRollback
public boolean canRollback()
-
-