public enum TeradataUtilityType extends Enum<TeradataUtilityType>
Enum Constant and Description |
---|
BTEQ |
FASTEXPORT |
FASTLOAD |
MULTILOAD |
Modifier and Type | Method and Description |
---|---|
static TeradataUtilityType |
determineType(String command) |
static TeradataUtilityType |
determineTypeFromFile(String filename) |
String |
getCommandPrefix() |
String |
getFileExtension() |
static TeradataUtilityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TeradataUtilityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TeradataUtilityType BTEQ
public static final TeradataUtilityType FASTEXPORT
public static final TeradataUtilityType FASTLOAD
public static final TeradataUtilityType MULTILOAD
public static TeradataUtilityType[] values()
for (TeradataUtilityType c : TeradataUtilityType.values()) System.out.println(c);
public static TeradataUtilityType 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 nullpublic String getFileExtension()
public String getCommandPrefix()
public static TeradataUtilityType determineType(String command)
public static TeradataUtilityType determineTypeFromFile(String filename)