public enum DMLType extends Enum<DMLType>
Enum Constant and Description |
---|
DELETE |
INSERT |
MERGE |
OTHER |
SELECT |
UPDATE |
Modifier and Type | Method and Description |
---|---|
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 UPDATE
public static final DMLType DELETE
public static final DMLType SELECT
public static final DMLType MERGE
public static final DMLType OTHER
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 nullCopyright © 2020. All rights reserved.