Enum Class TransactionStatus

java.lang.Object
java.lang.Enum<TransactionStatus>
org.hibernate.resource.transaction.spi.TransactionStatus
All Implemented Interfaces:
Serializable, Comparable<TransactionStatus>, Constable

public enum TransactionStatus extends Enum<TransactionStatus>
Enumeration of statuses in which a transaction facade (Transaction) might be.
  • Enum Constant Details

    • 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 Details

    • values

      public static TransactionStatus[] 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 TransactionStatus 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
    • isOneOf

      public boolean isOneOf(TransactionStatus... statuses)
    • isNotOneOf

      public boolean isNotOneOf(TransactionStatus... statuses)
    • canRollback

      public boolean canRollback()