com.ibm.dtfj.java
Uses of Interface JavaObject
Packages that use JavaObject
Package | Description |
---|---|
com.ibm.dtfj.java |
Uses of JavaObject in com.ibm.dtfj.java
Modifier and Type | Method and Description |
---|---|
JavaThread.getBlockingObject()
For threads that are in STATE_BLOCKED_ON_MONITOR_ENTER this method returns the JavaObject who's monitor they are blocked on.
|
|
JavaThread.getObject()
Fetch the java.lang.Thread associated with this thread.
|
|
JavaMonitor.getObject()
Get the object associated with this monitor.
|
|
JavaClassLoader.getObject()
Get the java.lang.ClassLoader instance associated with this class loader.
|
|
JavaClass.getObject()
Fetch the java.lang.Class object associated with this class.
|
|
JavaRuntime.getObjectAtAddress(ImagePointer address)
Gets the object located at address
address in the heap.
|
Modifier and Type | Method and Description |
---|---|
|
JavaField.get(JavaObject object)
Get the contents of an Object field
|
|
JavaField.getBoolean(JavaObject object)
Get the contents of a boolean field
|
|
JavaField.getByte(JavaObject object)
Get the contents of a byte field
|
|
JavaField.getChar(JavaObject object)
Get the contents of a char field
|
|
JavaField.getDouble(JavaObject object)
Get the contents of a double field
|
|
JavaField.getFloat(JavaObject object)
Get the contents of a float field
|
|
JavaField.getInt(JavaObject object)
Get the contents of an int field
|
|
JavaField.getLong(JavaObject object)
Get the contents of a long field
|
|
JavaField.getShort(JavaObject object)
Get the contents of a short field
|
|
JavaField.getString(JavaObject object)
Get the contents of a string field
|