public enum InsertOptions extends Enum<InsertOptions>
| Enum Constant and Description |
|---|
DELETE_EXISTING |
INSERT_UNIQUE |
INSERT_UPDATE |
INSERT_UPDATE_INPLACE |
UPDATE_EXISTING |
UPDATE_EXISTING_INPLACE |
| Modifier and Type | Method and Description |
|---|---|
static InsertOptions |
fromInt(int e) |
static int |
toInt(int ordinal) |
static InsertOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InsertOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InsertOptions INSERT_UNIQUE
public static final InsertOptions UPDATE_EXISTING
public static final InsertOptions INSERT_UPDATE
public static final InsertOptions DELETE_EXISTING
public static final InsertOptions UPDATE_EXISTING_INPLACE
public static final InsertOptions INSERT_UPDATE_INPLACE
public static InsertOptions[] values()
for (InsertOptions c : InsertOptions.values()) System.out.println(c);
public static InsertOptions 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 nullpublic static InsertOptions fromInt(int e)
public static int toInt(int ordinal)
Copyright © 2021. All rights reserved.