- All Implemented Interfaces:
Serializable,Comparable<TransactionState>,Constable
Transactions states.
- Since:
- 3.0
- Author:
- Mark Rotteveel
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionState used when a transaction was aborted with an unknown result. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanisValidTransition(TransactionState toState) Is the transition totoStatevalid from this state.final Set<TransactionState>static TransactionStateReturns the enum constant of this class with the specified name.static TransactionState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ACTIVE
-
PREPARING
-
PREPARED
-
COMMITTING
-
COMMITTED
-
ROLLING_BACK
-
ROLLED_BACK
-
ABORTED_UNKNOWN
State used when a transaction was aborted with an unknown result. For example, failure to commit, rollback, or prepare due to broken connections (IO errors, or the connection already being closed).In most cases, the transaction is probably rolled back, but we're not sure. For example, the commit could have been received and processed by the server, but a subsequent connection failure occurred before the response was received. Similar for a transaction prepare (first step of two-phase commit).
There are no valid transitions to and from this state; it can only be forcibly set.
- Since:
- 6.0.6
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
isValidTransition
Is the transition totoStatevalid from this state.- Parameters:
toState- The next state- Returns:
truetransition is valid
-
validTransitionSet
- Returns:
- Set of valid transitions from this state
-