Class PackStatistics.ObjectType.Accumulator

  • Enclosing class:
    PackStatistics.ObjectType

    public static class PackStatistics.ObjectType.Accumulator
    extends java.lang.Object
    POJO for accumulating the ObjectType statistics.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      long bytes
      Count of bytes for all objects of this type.
      long cntDeltas
      Count of deltas of this type.
      long cntObjects
      Count of objects of this type.
      long deltaBytes
      Count of delta bytes for objects of this type.
      long reusedDeltas
      Count of reused deltas of this type.
      long reusedObjects
      Count of reused objects of this type.
    • Constructor Summary

      Constructors 
      Constructor Description
      Accumulator()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • cntObjects

        public long cntObjects
        Count of objects of this type.
      • cntDeltas

        public long cntDeltas
        Count of deltas of this type.
      • reusedObjects

        public long reusedObjects
        Count of reused objects of this type.
      • reusedDeltas

        public long reusedDeltas
        Count of reused deltas of this type.
      • bytes

        public long bytes
        Count of bytes for all objects of this type.
      • deltaBytes

        public long deltaBytes
        Count of delta bytes for objects of this type.
    • Constructor Detail

      • Accumulator

        public Accumulator()