public enum DeleteMode extends Enum<DeleteMode>
| Enum Constant and Description |
|---|
FAIL_IF_NOT_EXIST
Fail the whole delete operation if any of the specified elements do not exist.
|
IGNORE_NON_EXISTING
Delete the elements that exist and ignore those that do not.
|
| Modifier and Type | Method and Description |
|---|---|
static DeleteMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeleteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeleteMode FAIL_IF_NOT_EXIST
public static final DeleteMode IGNORE_NON_EXISTING
public static DeleteMode[] values()
for (DeleteMode c : DeleteMode.values()) System.out.println(c);
public static DeleteMode 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.