MonitorInfopublic class LockInfo extends Object
Condition object associated with synchronizers.  An 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 the write-lock (but not the read-lock) of ReentrantReadWriteLock are two examples of ownable synchronizers provided by the platform. 
LockInfo is mapped to a CompositeData as specified in the from method.| Constructor | Description | 
|---|---|
| LockInfo | Constructs a  LockInfoobject. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static LockInfo | from | Returns a  LockInfoobject represented by the givenCompositeData. | 
| String | 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(java.lang.Object)method. | 
| String | toString() | Returns a string representation of a lock. | 
public LockInfo(String className, int identityHashCode)
LockInfo object.className - the fully qualified name of the class of the lock object.identityHashCode - the identity hash code of the lock object.public String getClassName()
public int getIdentityHashCode()
System.identityHashCode(java.lang.Object) method.public static LockInfo from(CompositeData cd)
LockInfo object represented by the given CompositeData. The given CompositeData must contain the following attributes: | Attribute Name | Type | 
|---|---|
| className | java.lang.String | 
| identityHashCode | java.lang.Integer | 
cd - CompositeData representing a LockInfo
LockInfo object represented by cd if cd is not null; null otherwise.IllegalArgumentException - if cd does not represent a LockInfo with the attributes described above.public String toString()
wherelock.getClass().getName() + '@' + Integer.toHexString(System.identityHashCode(lock))
lock is the lock object.
    © 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
    https://docs.oracle.com/en/java/javase/21/docs/api/java.management/java/lang/management/LockInfo.html