public enum OutputMode extends Enum<OutputMode>
Enum Constant and Description |
---|
APPEND
Simply insert the record data.
|
CREATETABLE
Create the table.
|
DELETE
Deprecated.
|
OVERWRITEROWS
Truncate the table, and then insert the record data.
|
OVERWRITETABLE
Drop and recreate the table, if it exists, and then insert the record data.
|
UPDATE
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static OutputMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputMode APPEND
public static final OutputMode CREATETABLE
public static final OutputMode OVERWRITEROWS
public static final OutputMode OVERWRITETABLE
@Deprecated public static final OutputMode UPDATE
@Deprecated public static final OutputMode DELETE
public static OutputMode[] values()
for (OutputMode c : OutputMode.values()) System.out.println(c);
public static OutputMode 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 Actian Corporation. All rights reserved.