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