public enum OverwriteMode extends Enum<OverwriteMode>
| Enum Constant and Description |
|---|
FULL
Full rewrite.
|
KEEP
Keep existing manifest.
|
MERGE
Merge instructions with current manifest entries.
|
| Modifier and Type | Method and Description |
|---|---|
static OverwriteMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OverwriteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OverwriteMode KEEP
public static final OverwriteMode MERGE
public static final OverwriteMode FULL
public static OverwriteMode[] values()
for (OverwriteMode c : OverwriteMode.values()) System.out.println(c);
public static OverwriteMode 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 © 2006–2017 OPS4J - Open Participation Software for Java. All rights reserved.