1# Java Heap Model
2
3The value of the Java heap model is the sum of bytes of Java objects allocated
4on the Java heap. It can be calculated using:
5
6    Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()
7
8A Java heap dump is used for an actionable breakdown of the Java heap.
9