public enum SevenZMethod extends Enum<SevenZMethod>
Enum Constant and Description |
---|
AES256SHA256
AES encryption with a key length of 256 bit using SHA256 for
hashes - only supported when reading
|
BZIP2
BZIP2
|
COPY
no compression at all
|
DEFLATE
Deflate
|
LZMA
LZMA - only supported when reading
|
LZMA2
LZMA2
|
Modifier and Type | Method and Description |
---|---|
static SevenZMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SevenZMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SevenZMethod COPY
public static final SevenZMethod LZMA
public static final SevenZMethod LZMA2
public static final SevenZMethod DEFLATE
public static final SevenZMethod BZIP2
public static final SevenZMethod AES256SHA256
public static SevenZMethod[] values()
for (SevenZMethod c : SevenZMethod.values()) System.out.println(c);
public static SevenZMethod valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2013 The Apache Software Foundation. All rights reserved.