Package org.gridkit.jvmtool.heapdump.HeapHistogram

Examples of org.gridkit.jvmtool.heapdump.HeapHistogram.ClassRecord


    public RefSet getInstances() {
        return strings;
    }

    public ClassRecord asClassRecord() {
        ClassRecord cr = new ClassRecord(String.class.getName() + " (retained)");
        cr.instanceCount = count;
        cr.totalSize = totalSize;
        return cr;
    }
View Full Code Here

TOP

Related Classes of org.gridkit.jvmtool.heapdump.HeapHistogram.ClassRecord

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.