public static enum ArchiverProvider.Type extends Enum<ArchiverProvider.Type>
| Enum Constant and Description |
|---|
BSD |
GNU |
WINDOWS |
WINDOWS_CLANG |
| Modifier and Type | Method and Description |
|---|---|
static ArchiverProvider.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArchiverProvider.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArchiverProvider.Type BSD
public static final ArchiverProvider.Type GNU
public static final ArchiverProvider.Type WINDOWS
public static final ArchiverProvider.Type WINDOWS_CLANG
public static ArchiverProvider.Type[] values()
for (ArchiverProvider.Type c : ArchiverProvider.Type.values()) System.out.println(c);
public static ArchiverProvider.Type 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 null