Enum Class TxnFailureRollbackState

java.lang.Object
java.lang.Enum<TxnFailureRollbackState>
com.github.sttk.sabi.TxnFailureRollbackState
All Implemented Interfaces:
Serializable, Comparable<TxnFailureRollbackState>, Constable

public enum TxnFailureRollbackState extends Enum<TxnFailureRollbackState>
Defines the states representing outcomes of transaction rollback attempts.
  • Enum Constant Details

    • NoneByRolledBack

      public static final TxnFailureRollbackState NoneByRolledBack
      Indicates that the connection was successfully rolled back without error.
    • NoneByNotRolledBack

      public static final TxnFailureRollbackState NoneByNotRolledBack
      Indicates that no rollback was performed on the connection.
    • RollbackFailure

      public static final TxnFailureRollbackState RollbackFailure
      Indicates that an error occurred while attempting to roll back the connection.
  • Method Details

    • values

      public static TxnFailureRollbackState[] 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

      public static TxnFailureRollbackState valueOf(String name)
      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 name
      NullPointerException - if the argument is null