Package com.facebook.presto.jdbc.internal.jol.layouters

Examples of com.facebook.presto.jdbc.internal.jol.layouters.CurrentLayouter


     *
     * @param klass class to work on
     * @return class layout
     */
    public static ClassLayout parseClass(Class<?> klass) {
        return parseClass(klass, new CurrentLayouter());
    }
View Full Code Here


    public static int sizeOf(Object o) {
        if (VMSupport.INSTRUMENTATION != null) {
            return VMSupport.align((int) VMSupport.INSTRUMENTATION.getObjectSize(o));
        }

        return new CurrentLayouter().layout(ClassData.parseInstance(o)).instanceSize();
    }
View Full Code Here

TOP

Related Classes of com.facebook.presto.jdbc.internal.jol.layouters.CurrentLayouter

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.