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