public static enum IEssCustomObject.CustomObjectCopyOption extends java.lang.Enum<IEssCustomObject.CustomObjectCopyOption>
Enum Constant and Description |
---|
ACCEPTEXISTING_CONFLICT
Accept the existing object (i.e., object not overwritten)
on a conflict, while deep copying the object.
|
COPYNEWER_CONFLICT
Overwrite custom object with newer version on a conflict
while deep copying the object.
|
ERROROUT_CONFLICT
Error out on a conflict while trying to perform a deep
copy of the object.
|
Modifier and Type | Method and Description |
---|---|
static IEssCustomObject.CustomObjectCopyOption |
getCustomObjectCopyOption(int ordinal) |
static IEssCustomObject.CustomObjectCopyOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IEssCustomObject.CustomObjectCopyOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IEssCustomObject.CustomObjectCopyOption COPYNEWER_CONFLICT
public static final IEssCustomObject.CustomObjectCopyOption ACCEPTEXISTING_CONFLICT
public static final IEssCustomObject.CustomObjectCopyOption ERROROUT_CONFLICT
public static IEssCustomObject.CustomObjectCopyOption[] values()
for (IEssCustomObject.CustomObjectCopyOption c : IEssCustomObject.CustomObjectCopyOption.values()) System.out.println(c);
public static IEssCustomObject.CustomObjectCopyOption 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 nullpublic static final IEssCustomObject.CustomObjectCopyOption getCustomObjectCopyOption(int ordinal)