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