Enum TransactionStatus

    • Enum Constant Detail

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

      • values

        public static TransactionStatus[] 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 (TransactionStatus c : TransactionStatus.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TransactionStatus 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
      • canRollback

        public boolean canRollback()