Class LockInfo
- java.lang.Object
-
- java.lang.management.LockInfo
-
- Direct Known Subclasses:
- MonitorInfo
public class LockInfo extends Object
Information about a lock. A lock can be a built-in object monitor, an ownable synchronizer, or theCondition
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
andReentrantReadWriteLock
are two examples of ownable synchronizers provided by the platform.MXBean Mapping
LockInfo is mapped to aCompositeData
as specified in thefrom
method.- Since:
- 1.6
- See Also:
-
AbstractOwnableSynchronizer
,Condition
-
-
Constructor Summary
Constructors Constructor and Description LockInfo(String className, int identityHashCode)
Constructs a LockInfo object.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description static LockInfo
from(CompositeData cd)
Returns aLockInfo
object 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 theSystem.identityHashCode(java.lang.Object)
method.String
toString()
Returns a string representation of a lock.
-
-
-
Constructor Detail
LockInfo
public LockInfo(String className, int identityHashCode)
Constructs a LockInfo object.- Parameters:
-
className
- the fully qualified name of the class of the lock object. -
identityHashCode
- theidentity hash code
of the lock object.
-
Method Detail
getClassName
public String getClassName()
Returns the fully qualified name of the class of the lock object.- Returns:
- the fully qualified name of the class of the lock object.
getIdentityHashCode
public int getIdentityHashCode()
Returns the identity hash code of the lock object returned from theSystem.identityHashCode(java.lang.Object)
method.- Returns:
- the identity hash code of the lock object.
from
public static LockInfo from(CompositeData cd)
Returns aLockInfo
object represented by the givenCompositeData
. The givenCompositeData
must contain the following attributes:Attribute Name Type className java.lang.String identityHashCode java.lang.Integer - Parameters:
-
cd
-CompositeData
representing aLockInfo
- Returns:
-
a
LockInfo
object represented bycd
ifcd
is notnull
;null
otherwise. - Throws:
-
IllegalArgumentException
- ifcd
does not represent aLockInfo
with the attributes described above. - Since:
- 1.8
toString
public String toString()
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:lock.getClass().getName() + '@' + Integer.toHexString(System.identityHashCode(lock))
-
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2022, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.