Class Pack.Delta

  • Enclosing class:
    Pack

    private static class Pack.Delta
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) long basePos
      Offset of the base object this delta applies onto.
      (package private) long deltaPos
      Offset of the delta object.
      (package private) int deltaSize
      Size of the inflated delta stream.
      (package private) int hdrLen
      Total size of the delta's pack entry header (including base).
      (package private) Pack.Delta next
      Child that applies onto this object.
    • Constructor Summary

      Constructors 
      Constructor Description
      Delta​(Pack.Delta next, long ofs, int sz, int hdrLen, long baseOffset)  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • next

        final Pack.Delta next
        Child that applies onto this object.
      • deltaPos

        final long deltaPos
        Offset of the delta object.
      • deltaSize

        final int deltaSize
        Size of the inflated delta stream.
      • hdrLen

        final int hdrLen
        Total size of the delta's pack entry header (including base).
      • basePos

        final long basePos
        Offset of the base object this delta applies onto.
    • Constructor Detail

      • Delta

        Delta​(Pack.Delta next,
              long ofs,
              int sz,
              int hdrLen,
              long baseOffset)