public enum ArchiveContents extends Enum<ArchiveContents>
Enum Constant and Description |
---|
NORMAL
This archive packages a copy of its inputs and can be used independently of its inputs.
|
THIN
This archive only packages the relative paths to its inputs and so can only be used when its
inputs are available.
|
Modifier and Type | Method and Description |
---|---|
static ArchiveContents |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArchiveContents[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArchiveContents NORMAL
public static final ArchiveContents THIN
public static ArchiveContents[] values()
for (ArchiveContents c : ArchiveContents.values()) System.out.println(c);
public static ArchiveContents 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