/* * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.lang.management; import javax.management.openmbean.CompositeData; import java.util.concurrent.locks.*; import sun.management.LockInfoCompositeData; /** * Information about a lock. A lock can be a built-in object monitor, * an ownable synchronizer, or the {@link Condition Condition} * object associated with synchronizers. *
* An ownable synchronizer is * a synchronizer that may be exclusively owned by a thread and uses * {@link AbstractOwnableSynchronizer AbstractOwnableSynchronizer} * (or its subclass) to implement its synchronization property. * {@link ReentrantLock ReentrantLock} and * {@link ReentrantReadWriteLock ReentrantReadWriteLock} are * two examples of ownable synchronizers provided by the platform. * *
** * @param cd {@code CompositeData} representing a {@code LockInfo} * * @throws IllegalArgumentException if {@code cd} does not * represent a {@code LockInfo} with the attributes described * above. * @return a {@code LockInfo} object represented * by {@code cd} if {@code cd} is not {@code null}; * {@code null} otherwise. * * @since 1.8 */ public static LockInfo from(CompositeData cd) { if (cd == null) { return null; } if (cd instanceof LockInfoCompositeData) { return ((LockInfoCompositeData) cd).getLockInfo(); } else { return LockInfoCompositeData.toLockInfo(cd); } } /** * Returns a string representation of a lock. The returned * string representation consists of the name of the class of the * lock object, the at-sign character `@', and the unsigned * hexadecimal representation of the identity hash code * of the object. This method returns a string equals to the value of: **
** *Attribute Name *Type ** *className *java.lang.String ** *identityHashCode *java.lang.Integer *
** where lock is the lock object. * * @return the string representation of a lock. */ public String toString() { return className + '@' + Integer.toHexString(identityHashCode); } }* lock.getClass().getName() + '@' + Integer.toHexString(System.identityHashCode(lock)) *