Class DfsPackFile.Delta
- java.lang.Object
-
- org.eclipse.jgit.internal.storage.dfs.DfsPackFile.Delta
-
- Enclosing class:
- DfsPackFile
private static class DfsPackFile.Delta extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) longbasePosOffset of the base object this delta applies onto.(package private) longdeltaPosOffset of the delta object.(package private) intdeltaSizeSize of the inflated delta stream.(package private) inthdrLenTotal size of the delta's pack entry header (including base).(package private) DfsPackFile.DeltanextChild that applies onto this object.
-
Constructor Summary
Constructors Constructor Description Delta(DfsPackFile.Delta next, long ofs, int sz, int hdrLen, long baseOffset)
-
-
-
Field Detail
-
next
final DfsPackFile.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(DfsPackFile.Delta next, long ofs, int sz, int hdrLen, long baseOffset)
-
-