public enum DMLType extends Enum<DMLType> implements SqlExecuteType
| Enum Constant and Description |
|---|
DELETE |
INSERT |
SELECT |
UPDATE |
UPSERT |
| Modifier and Type | Method and Description |
|---|---|
String |
getType() |
static DMLType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DMLType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DMLType INSERT
public static final DMLType UPSERT
public static final DMLType DELETE
public static final DMLType UPDATE
public static final DMLType SELECT
public static DMLType[] values()
for (DMLType c : DMLType.values()) System.out.println(c);
public static DMLType 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 String getType()
getType in interface SqlExecuteTypeCopyright © 2024–2025 Dynamic-SQL. All rights reserved.