GCA 0.4.0

pfg.gca.models
Class HistogramModel

java.lang.Object
  |
  +--java.util.AbstractMap
        |
        +--java.util.HashMap
              |
              +--pfg.gca.models.HistogramModel
All Implemented Interfaces:
java.lang.Cloneable, java.util.Map, java.io.Serializable

public class HistogramModel
extends java.util.HashMap

Store GC data in a histogram format. This model is a HashMap where each key represents a time t in milliseconds and each value represents the quantity of GCs of duration t.

Author:
Paul Glezen
See Also:
Serialized Form

Inner classes inherited from class java.util.Map
java.util.Map.Entry
 
Constructor Summary
HistogramModel(java.util.List gcRecords)
          Accept a list of raw GC data and convert it to a histogram format.
 
Methods inherited from class java.util.HashMap
clear, clone, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, putAll, remove, size, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Constructor Detail

HistogramModel

public HistogramModel(java.util.List gcRecords)
Accept a list of raw GC data and convert it to a histogram format.
Parameters:
gcRecords - a list of GCRecord

Paul Glezen
http://glezen.org/gca/

Generated: February 24 2005