public enum TransactionStatus extends Enum<TransactionStatus>
Transaction
) might be.Enum Constant and Description |
---|
ACTIVE
The transaction has been begun, but not yet completed.
|
COMMITTED
The transaction has been competed 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.
|
MARKED_ROLLBACK
The transaction has been marked for rollback only.
|
NOT_ACTIVE
The transaction has not yet been begun
|
ROLLED_BACK
The transaction has been rolled back.
|
ROLLING_BACK
Status code indicating a transaction that is in the process of
rolling back.
|
Modifier and Type | Method and 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.
|
public static final TransactionStatus NOT_ACTIVE
public static final TransactionStatus ACTIVE
public static final TransactionStatus COMMITTED
public static final TransactionStatus ROLLED_BACK
public static final TransactionStatus MARKED_ROLLBACK
public static final TransactionStatus FAILED_COMMIT
public static final TransactionStatus COMMITTING
public static final TransactionStatus ROLLING_BACK
public static TransactionStatus[] values()
for (TransactionStatus c : TransactionStatus.values()) System.out.println(c);
public static TransactionStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean isOneOf(TransactionStatus... statuses)
public boolean isNotOneOf(TransactionStatus... statuses)
public boolean canRollback()
Copyright © 2017 JBoss by Red Hat. All rights reserved.