public enum UPSERT_MODE extends java.lang.Enum<UPSERT_MODE>
Enum Constant and Description |
---|
DB2 |
FROM_DUAL |
FROM_JL_DUAL |
FROM_SYSDUMMY1 |
MERGE |
UNION_ALL |
Modifier and Type | Method and Description |
---|---|
static UPSERT_MODE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UPSERT_MODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UPSERT_MODE DB2
public static final UPSERT_MODE FROM_DUAL
public static final UPSERT_MODE FROM_JL_DUAL
public static final UPSERT_MODE FROM_SYSDUMMY1
public static final UPSERT_MODE UNION_ALL
public static final UPSERT_MODE MERGE
public static UPSERT_MODE[] values()
for (UPSERT_MODE c : UPSERT_MODE.values()) System.out.println(c);
public static UPSERT_MODE valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null