|
Préférences
Moteurs de recherche
|
||||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
java.lang.management
|
Constructor Summary | |
---|---|
LockInfo(String className,
int identityHashCode)
Constructs a LockInfo object. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
@ConstructorProperties(value={"className","identityHashCode"}) public LockInfo(String className, int identityHashCode)
className
- the fully qualified name of the class of the lock object.identityHashCode
- the identity hash code
of the lock object.Method Detail |
---|
public String getClassName()
public int getIdentityHashCode()
System.identityHashCode(java.lang.Object)
method.
public String toString()
where lock is the lock object.lock.getClass().getName() + '@' + Integer.toHexString(System.identityHashCode(lock))