Package com.arjuna.ats.txoj
Class LockStatus
- java.lang.Object
-
- com.arjuna.ats.txoj.LockStatus
-
public class LockStatus extends Object
Essentially an enumeration of the status a lock may be in.- Since:
- JTS 1.0.
- Version:
- $Id: LockStatus.java 2342 2006-03-30 13:06:17Z $
- Author:
- Mark Little (mark@arjuna.com)
-
-
Field Summary
Fields Modifier and Type Field Description static intLOCKFREEstatic intLOCKHELDstatic intLOCKRETAINED
-
Constructor Summary
Constructors Constructor Description LockStatus()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidprint(PrintWriter strm, int ls)static StringprintString(int ls)Print a human-readable form.
-
-
-
Field Detail
-
LOCKFREE
public static final int LOCKFREE
- See Also:
- Constant Field Values
-
LOCKHELD
public static final int LOCKHELD
- See Also:
- Constant Field Values
-
LOCKRETAINED
public static final int LOCKRETAINED
- See Also:
- Constant Field Values
-
-
Method Detail
-
printString
public static String printString(int ls)
Print a human-readable form.
-
print
public static void print(PrintWriter strm, int ls)
-
-