public enum LoadMethod extends Enum<LoadMethod>
Enum Constant and Description |
---|
DIRECT
Use direct API into Vector
|
SQLCOPY
Use the SQL copy method
|
VWLOAD
Use the vwload utility
|
VWLOAD_DISTRIBUTED
Use the distributed vwload utility
|
Modifier and Type | Method and Description |
---|---|
static LoadMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoadMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadMethod DIRECT
public static final LoadMethod VWLOAD
public static final LoadMethod VWLOAD_DISTRIBUTED
public static final LoadMethod SQLCOPY
public static LoadMethod[] values()
for (LoadMethod c : LoadMethod.values()) System.out.println(c);
public static LoadMethod 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 © 2016 Actian Corporation. All rights reserved.