Class Pack.Delta
java.lang.Object
org.eclipse.jgit.internal.storage.file.Pack.Delta
- Enclosing class:
- Pack
-
Field Summary
FieldsModifier and TypeFieldDescription(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 -
Method Summary
-
Field Details
-
next
Child that applies onto this object. -
deltaPos
final long deltaPosOffset of the delta object. -
deltaSize
final int deltaSizeSize of the inflated delta stream. -
hdrLen
final int hdrLenTotal size of the delta's pack entry header (including base). -
basePos
final long basePosOffset of the base object this delta applies onto.
-
-
Constructor Details
-
Delta
Delta(Pack.Delta next, long ofs, int sz, int hdrLen, long baseOffset)
-