Interface PrimitiveArray
- All Superinterfaces:
HeapObject
Represents a primitive array from a heap dump. Provides access to the data stored in the array.
-
Method Summary
Modifier and TypeMethodDescriptionreadData()Reads the data stored in this primitive array as aByteBuffer.Methods inherited from interface HeapObject
classDescriptor, id, referencedObjects, referencingObjects, size
-
Method Details
-
readData
Reads the data stored in this primitive array as aByteBuffer. You can useByteBuffer.asIntBuffer()etc. to access the values of the array. For JProfiler heap dumps, the data will be limited to the first 10.000 elements.- Returns:
- A
ByteBufferrepresentation of the data in this primitive array, ornullif the data is not available.
-