public enum DbOperationType extends Enum<DbOperationType>
| Enum Constant and Description |
|---|
DELETE |
DELETE_BULK |
INSERT |
UPDATE |
UPDATE_BULK |
| Modifier and Type | Method and Description |
|---|---|
static DbOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbOperationType INSERT
public static final DbOperationType UPDATE
public static final DbOperationType UPDATE_BULK
public static final DbOperationType DELETE
public static final DbOperationType DELETE_BULK
public static DbOperationType[] values()
for (DbOperationType c : DbOperationType.values()) System.out.println(c);
public static DbOperationType 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 © 2018 camunda services GmbH. All rights reserved.