public enum LibraryConflictResolution extends java.lang.Enum<LibraryConflictResolution>
Enum Constant and Description |
---|
KEEP_BOTH
An item with the same name or ID as an existing item will be renamed/get a new ID.
|
KEEP_NEW
An item with the same name or ID as an existing item will overwrite the existing item.
|
KEEP_OLD
An item with the same name or ID as an existing item will be skipped.
|
Modifier and Type | Method and Description |
---|---|
static LibraryConflictResolution |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LibraryConflictResolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LibraryConflictResolution KEEP_NEW
KeepNew
(case sensitive).public static final LibraryConflictResolution KEEP_BOTH
KeepBoth
(case sensitive).public static final LibraryConflictResolution KEEP_OLD
KeepOld
(case sensitive).public static LibraryConflictResolution[] values()
for (LibraryConflictResolution c : LibraryConflictResolution.values()) System.out.println(c);
public static LibraryConflictResolution valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2013-2020 TIBCO Software Inc. All Rights Reserved.