Class Pack.Delta

java.lang.Object
org.eclipse.jgit.internal.storage.file.Pack.Delta
Enclosing class:
Pack

private static class Pack.Delta extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    (package private) final long
    Offset of the base object this delta applies onto.
    (package private) final long
    Offset of the delta object.
    (package private) final int
    Size of the inflated delta stream.
    (package private) final int
    Total size of the delta's pack entry header (including base).
    (package private) final Pack.Delta
    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 Details

    • 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 Details

    • Delta

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