Package org.apache.ignite.transactions
Enum TransactionState
- java.lang.Object
- 
- java.lang.Enum<TransactionState>
- 
- org.apache.ignite.transactions.TransactionState
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<TransactionState>
 
 public enum TransactionState extends Enum<TransactionState> Cache transaction state.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ACTIVETransaction started.COMMITTEDTransaction commit succeeded.COMMITTINGTransaction commit started (validating finished).MARKED_ROLLBACKTransaction is marked for rollback.PREPAREDTransaction validation succeeded.PREPARINGTransaction validating.ROLLED_BACKTransaction rollback succeeded.ROLLING_BACKTransaction rollback started (validation failed).SUSPENDEDTransaction has been suspended by user.UNKNOWNTransaction rollback failed or is otherwise unknown state.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static @Nullable TransactionStatefromOrdinal(int ord)Efficiently gets enumerated value from its ordinal.static TransactionStatevalueOf(String name)Returns the enum constant of this type with the specified name.static TransactionState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ACTIVEpublic static final TransactionState ACTIVE Transaction started.
 - 
PREPARINGpublic static final TransactionState PREPARING Transaction validating.
 - 
PREPAREDpublic static final TransactionState PREPARED Transaction validation succeeded.
 - 
MARKED_ROLLBACKpublic static final TransactionState MARKED_ROLLBACK Transaction is marked for rollback.
 - 
COMMITTINGpublic static final TransactionState COMMITTING Transaction commit started (validating finished).
 - 
COMMITTEDpublic static final TransactionState COMMITTED Transaction commit succeeded.
 - 
ROLLING_BACKpublic static final TransactionState ROLLING_BACK Transaction rollback started (validation failed).
 - 
ROLLED_BACKpublic static final TransactionState ROLLED_BACK Transaction rollback succeeded.
 - 
UNKNOWNpublic static final TransactionState UNKNOWN Transaction rollback failed or is otherwise unknown state.
 - 
SUSPENDEDpublic static final TransactionState SUSPENDED Transaction has been suspended by user.
 
- 
 - 
Method Detail- 
valuespublic static 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 (TransactionState c : TransactionState.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static 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
 
 - 
fromOrdinal@Nullable public static @Nullable TransactionState fromOrdinal(int ord) Efficiently gets enumerated value from its ordinal.- Parameters:
- ord- Ordinal value.
- Returns:
- Enumerated value or nullif ordinal out of range.
 
 
- 
 
-