public static interface FileTransformations.ArchiveCombiner
| Modifier and Type | Field and Description |
|---|---|
static FileTransformations.ArchiveCombiner |
NOP
An
FileTransformations.ArchiveCombiner that does nothing. |
| Modifier and Type | Method and Description |
|---|---|
void |
combineArchive(java.lang.String archivePath,
ConsumerWhichThrows<? super FileTransformations.NameAndContents,? extends java.io.IOException> entryAdder)
Combines the results of
ContentsTransformer.transform(String, InputStream, java.io.OutputStream)
for all archive entries into one object. |
static final FileTransformations.ArchiveCombiner NOP
FileTransformations.ArchiveCombiner that does nothing.void combineArchive(java.lang.String archivePath,
ConsumerWhichThrows<? super FileTransformations.NameAndContents,? extends java.io.IOException> entryAdder)
throws java.io.IOException
ContentsTransformer.transform(String, InputStream, java.io.OutputStream)
for all archive entries into one object.archivePath - The path designating the archive being transformedentryAdder - Can be called to add entries to the archivejava.io.IOException