public enum ConflictActionType extends Enum<ConflictActionType>
| Enum Constant and Description |
|---|
DO_NOTHING |
DO_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static ConflictActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConflictActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConflictActionType DO_NOTHING
public static final ConflictActionType DO_UPDATE
public static ConflictActionType[] values()
for (ConflictActionType c : ConflictActionType.values()) System.out.println(c);
public static ConflictActionType 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 © 2004–2022 JSQLParser. All rights reserved.