public static enum SqlDatasetDescriptor.Platform extends Enum<SqlDatasetDescriptor.Platform>
| Enum Constant and Description |
|---|
MYSQL |
ORACLE |
POSTGRES |
SQLSERVER |
TERADARA |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SqlDatasetDescriptor.Platform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlDatasetDescriptor.Platform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlDatasetDescriptor.Platform SQLSERVER
public static final SqlDatasetDescriptor.Platform MYSQL
public static final SqlDatasetDescriptor.Platform ORACLE
public static final SqlDatasetDescriptor.Platform POSTGRES
public static final SqlDatasetDescriptor.Platform TERADARA
public static SqlDatasetDescriptor.Platform[] values()
for (SqlDatasetDescriptor.Platform c : SqlDatasetDescriptor.Platform.values()) System.out.println(c);
public static SqlDatasetDescriptor.Platform 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 toString()
toString in class Enum<SqlDatasetDescriptor.Platform>