Java javax.transaction Status fields, constructors, methods, implement or subclass

Example usage for Java javax.transaction Status fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.transaction Status.

The text is from its open source code.

Implementation

javax.transaction.Status has the following implementations.
Click this link to see all its implementation.

Field

intSTATUS_ACTIVE
A transaction is associated with the target object and it is in the active state.
intSTATUS_MARKED_ROLLBACK
A transaction is associated with the target object and it has been marked for rollback, perhaps as a result of a setRollbackOnly operation.
intSTATUS_PREPARED
A transaction is associated with the target object and it has been prepared.
intSTATUS_COMMITTED
A transaction is associated with the target object and it has been committed.
intSTATUS_ROLLEDBACK
A transaction is associated with the target object and the outcome has been determined to be rollback.
intSTATUS_UNKNOWN
A transaction is associated with the target object but its current status cannot be determined.
intSTATUS_NO_TRANSACTION
No transaction is currently associated with the target object.
intSTATUS_PREPARING
A transaction is associated with the target object and it is in the process of preparing.
intSTATUS_COMMITTING
A transaction is associated with the target object and it is in the process of committing.
intSTATUS_ROLLING_BACK
A transaction is associated with the target object and it is in the process of rolling back.

Method

StringtoString()
Returns a string representation of the object.