-
public interface UnparseableExtraFieldBehaviorHandles extra field data that doesn't follow the recommended pattern for extra fields with a two-byte key and a two-byte length.
-
-
Method Summary
Modifier and Type Method Description abstract ZipExtraFieldonUnparseableExtraField(Array<byte> data, int off, int len, boolean local, int claimedLength)Decides what to do with extra field data that doesn't follow the recommended pattern. -
-
Method Detail
-
onUnparseableExtraField
abstract ZipExtraField onUnparseableExtraField(Array<byte> data, int off, int len, boolean local, int claimedLength)
Decides what to do with extra field data that doesn't follow the recommended pattern.
- Parameters:
data- the array of extra field dataoff- offset into data where the unparseable data startslen- the length of unparseable datalocal- whether the extra field data stems from the localfile header.claimedLength- length of the extra field claimed by thethird and forth byte if it did follow the recommended pattern
-
-
-
-