|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ArchiveFormat> net.sf.sevenzipjbinding.ArchiveFormat
public enum ArchiveFormat
Enumeration of all supported archive types.
Format Implementation Test Enum value 7z X X SEVEN_ZIP
Arj X X ARJ
BZip2 X X BZIP2
Cab X X CAB
Chm X X CHM
Compound - - - Cpio X X CPIO
Deb X X DEB
Dmg - - - Elf - - - GZip X X GZIP
Hfs - - - Iso X X ISO
Lzh X X LZH
Lzma X X LZMA
Macho - - - Mub - - - Nsis X X NSIS
Pa - - - Rar X X RAR
Rpm X X RAR
Split - - - Tar X X TAR
Udf X X UDF
Wim X X WIM
Xar X X XAR
Z X X Z
Zip X X ZIP
- Version:
- 4.65-1
- Author:
- Boris Brodski
Enum Constant Summary ARJ
Arj formatBZIP2
BZip2 format.CAB
Cab format.CHM
ChmCPIO
Cpio format.DEB
DebGZIP
Gzip formatHFS
Hfs formatISO
Iso format.LZH
LzhLZMA
Lzma format.NSIS
NsisRAR
Rar format.RPM
RpmSEVEN_ZIP
7z format.SPLIT
Split format.TAR
Tar format.UDF
UdfWIM
UdfXAR
XarZ
Z format.ZIP
Zip format.
Method Summary java.lang.String
getMethodName()
Return name of the archive methodjava.lang.String
toString()
static ArchiveFormat
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ArchiveFormat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
Methods inherited from class java.lang.Enum compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
Methods inherited from class java.lang.Object getClass, notify, notifyAll, wait, wait, wait
Enum Constant Detail ZIP
public static final ArchiveFormat ZIP
- Zip format.
TAR
public static final ArchiveFormat TAR
- Tar format.
SPLIT
public static final ArchiveFormat SPLIT
- Split format.
RAR
public static final ArchiveFormat RAR
- Rar format.
LZMA
public static final ArchiveFormat LZMA
- Lzma format.
ISO
public static final ArchiveFormat ISO
- Iso format.
HFS
public static final ArchiveFormat HFS
- Hfs format
GZIP
public static final ArchiveFormat GZIP
- Gzip format
CPIO
public static final ArchiveFormat CPIO
- Cpio format.
BZIP2
public static final ArchiveFormat BZIP2
- BZip2 format.
SEVEN_ZIP
public static final ArchiveFormat SEVEN_ZIP
- 7z format.
Z
public static final ArchiveFormat Z
- Z format.
ARJ
public static final ArchiveFormat ARJ
- Arj format
CAB
public static final ArchiveFormat CAB
- Cab format.
LZH
public static final ArchiveFormat LZH
- Lzh
CHM
public static final ArchiveFormat CHM
- Chm
NSIS
public static final ArchiveFormat NSIS
- Nsis
DEB
public static final ArchiveFormat DEB
- Deb
RPM
public static final ArchiveFormat RPM
- Rpm
UDF
public static final ArchiveFormat UDF
- Udf
WIM
public static final ArchiveFormat WIM
- Udf
XAR
public static final ArchiveFormat XAR
- Xar
Method Detail values
public static ArchiveFormat[] values()
- Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ArchiveFormat c : ArchiveFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static ArchiveFormat valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
getMethodName
public java.lang.String getMethodName()
- Return name of the archive method
- Returns:
- name of the archive method
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<ArchiveFormat>
Overview Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD DETAIL: ENUM CONSTANTS | FIELD | METHOD