public static enum XarEntryType.UpgradeType extends Enum<XarEntryType.UpgradeType>
Enum Constant and Description |
---|
OVERWRITE
Always overwrite the existing document.
|
SKIP
If what already exist is non standard don't touch it.
|
SKIP_ALLWAYS
If anything already exist don't touch it.
|
THREEWAYS
Apply a 3 ways merge (the default).
|
Modifier and Type | Method and Description |
---|---|
static XarEntryType.UpgradeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XarEntryType.UpgradeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XarEntryType.UpgradeType THREEWAYS
public static final XarEntryType.UpgradeType OVERWRITE
public static final XarEntryType.UpgradeType SKIP
public static final XarEntryType.UpgradeType SKIP_ALLWAYS
public static XarEntryType.UpgradeType[] values()
for (XarEntryType.UpgradeType c : XarEntryType.UpgradeType.values()) System.out.println(c);
public static XarEntryType.UpgradeType 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 © 2004–2022 XWiki. All rights reserved.