All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.sevenzipjbinding.ArchiveFormat Maven / Gradle / Ivy

The newest version!
package net.sf.sevenzipjbinding;

/**
 * Enumeration of all supported archive types. 
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
FormatImplementationTestEnum value
7zXX{@link #SEVEN_ZIP}
ArjXX{@link #ARJ}
BZip2XX{@link #BZIP2}
CabXX{@link #CAB}
ChmXX{@link #CHM}
Compound---
CpioXX{@link #CPIO}
DebXX{@link #DEB}
Dmg---
Elf---
GZipXX{@link #GZIP}
Hfs---
IsoXX{@link #ISO}
LzhXX{@link #LZH}
LzmaXX{@link #LZMA}
Macho---
Mub---
NsisXX{@link #NSIS}
Pa---
RarXX{@link #RAR}
RpmXX{@link #RAR}
Split---
TarXX{@link #TAR}
UdfXX{@link #UDF}
WimXX{@link #WIM}
XarXX{@link #XAR}
ZXX{@link #Z}
ZipXX{@link #ZIP}
*

* * @author Boris Brodski * @version 4.65-1 */ public enum ArchiveFormat { /** * Zip format. */ ZIP("Zip"), /** * Tar format. */ TAR("Tar"), /** * Split format. */ SPLIT("Split"), /** * Rar format. */ RAR("Rar"), // /** * Lzma format. */ LZMA("Lzma"), /** * Iso format. */ ISO("Iso"), /** * Hfs format */ HFS("HFS"), /** * Gzip format */ GZIP("GZip"), /** * Cpio format. */ CPIO("Cpio"), /** * BZip2 format. */ BZIP2("BZIP2"), /** * 7z format. */ SEVEN_ZIP("7z"), /** * Z format. */ Z("Z"), /** * Arj format */ ARJ("Arj"), // /** * Cab format. */ CAB("Cab"), /** * Lzh */ LZH("Lzh"), /** * Chm */ CHM("Chm"), /** * Nsis */ NSIS("Nsis"), /** * Deb */ DEB("Deb"), /** * Rpm */ RPM("Rpm"), /** * Udf */ UDF("Udf"), /** * Udf */ WIM("Wim"), /** * Xar */ XAR("Xar"); private String methodName; ArchiveFormat(String methodName) { this.methodName = methodName; } /** * Return name of the archive method * * @return name of the archive method */ public String getMethodName() { return methodName; } /** * {@inheritDoc} */ @Override public String toString() { return methodName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy