public enum ConflictAction extends Enum<ConflictAction>
| Enum Constant and Description |
|---|
DO_NOTHING |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static ConflictAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConflictAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConflictAction UPDATE
public static final ConflictAction DO_NOTHING
public static ConflictAction[] values()
for (ConflictAction c : ConflictAction.values()) System.out.println(c);
public static ConflictAction 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 (c) 2006-2025 North Concepts Inc. All Rights Reserved.