java.lang.management.LockInfoAn ownable synchronizer is a synchronizer that may be exclusively owned by a thread and uses AbstractOwnableSynchronizer (or its subclass) to implement its synchronization property. ReentrantLock and ReentrantReadWriteLock are two examples of ownable synchronizers provided by the platform.
| Method Summary | ||
| getClassName() Returns the fully qualified name of the class of the lock object. |
||
int |
getIdentityHashCode() Returns the identity hash code of the lock object
returned from the System.identityHashCode() method. |
|
| toString() Returns a string representation of a lock. |
||
| Methods inherited from class java.lang.Object |
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
where lock is the lock object.lock.getClass().getName() + '@' + Integer.toHexString(System.identityHashCode(lock))