java.lang.Object
java.lang.management.LockInfo
- Direct Known Subclasses:
MonitorInfo
This class represents information about locked objects.
- Since:
- 1.6
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic LockInfo
from
(CompositeData compositeData) Returns aLockInfo
object represented by the givenCompositeData
.Returns the name of the lock object's class in fully qualified form (i.e.int
Returns the value of the associated lock object's identity hash codetoString()
Provides callers with a string value that represents the associated lock.
-
Constructor Details
-
LockInfo
Creates a newLockInfo
instance.- Parameters:
className
- the name (including the package prefix) of the associated lock object's classidentityHashCode
- the value of the associated lock object's identity hash code. This amounts to the result of callingSystem.identityHashCode(Object)
with the lock object as the sole argument.- Throws:
NullPointerException
- ifclassName
isnull
-
-
Method Details
-
getClassName
Returns the name of the lock object's class in fully qualified form (i.e. including the package prefix).- Returns:
- the associated lock object's class name
-
getIdentityHashCode
public int getIdentityHashCode()Returns the value of the associated lock object's identity hash code- Returns:
- the identity hash code of the lock object
-
from
Returns aLockInfo
object represented by the givenCompositeData
. The givenCompositeData
must contain the following attributes:The attributes and the types the given CompositeData contains Attribute Name Type className java.lang.String
identityHashCode java.lang.Integer
- Parameters:
compositeData
-CompositeData
representing aLockInfo
- Returns:
- a
LockInfo
object represented bycompositeData
ifcompositeData
is notnull
;null
otherwise. - Throws:
IllegalArgumentException
- ifcompositeData
does not represent aLockInfo
with the attributes described above.- Since:
- 1.8
-
toString
Provides callers with a string value that represents the associated lock. The string will hold both the name of the lock object's class and it's identity hash code expressed as an unsigned hexadecimal. i.e.
getClassName()
+ @ + Integer.toHexString(getIdentityHashCode()
)
-