net.sf.sevenzipjbinding.IOutItemAllFormats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sevenzipjbinding Show documentation
Show all versions of sevenzipjbinding Show documentation
7-Zip-JBinding is a free cross-platform java binding of 7-Zip free compress/decompress library
(http://www.7-zip.org/, http://p7zip.sourceforge.net/)
The newest version!
package net.sf.sevenzipjbinding;
/**
* Archive format independent (generic) archive item data class. It contains all information about a single archive
* item, that is needed for a create or an update archive operation. Use this interface in the code, that should be able
* to handle multiple archive formats is a generic way. See {@link IOutItemBase} for details.
*
* @see IOutItemBase
*
* @author Boris Brodski
* @since 9.20-2.00
*/
public interface IOutItemAllFormats extends IOutItem7z, IOutItemBZip2, IOutItemGZip, IOutItemTar, IOutItemZip {
}