@Internal public enum ArchiverType extends Enum<ArchiverType>
Archiver
types.Enum Constant and Description |
---|
NONE
None archiver type means that no
Archiver should be used - files are not compressed or should not be
compressed. |
ZIP
A zip format archiver.
|
Modifier and Type | Method and Description |
---|---|
static ArchiverType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArchiverType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArchiverType NONE
Archiver
should be used - files are not compressed or should not be
compressed.public static final ArchiverType ZIP
public static ArchiverType[] values()
for (ArchiverType c : ArchiverType.values()) System.out.println(c);
public static ArchiverType 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 © 2020 Atlassian Software Systems Pty Ltd. All rights reserved.