public enum CreateMode extends Enum<CreateMode>
| Enum Constant and Description |
|---|
FAIL_IF_EXIST
Fail the creation of the whole batch if any of the supplied CIs or relations already exist.
|
IGNORE_EXISTING
Create non-existing CIs and relations and ignore existing ones.
|
UPDATE_EXISTING
Create non-existing CIs and relations and update the non-key properties of existing ones.
|
| Modifier and Type | Method and Description |
|---|---|
static CreateMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CreateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreateMode FAIL_IF_EXIST
public static final CreateMode IGNORE_EXISTING
public static final CreateMode UPDATE_EXISTING
public static CreateMode[] values()
for (CreateMode c : CreateMode.values()) System.out.println(c);
public static CreateMode 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 Documentation Feedback
Copyright 2011 - 2023 Micro Focus or one of its affiliates.