@Generated public enum ConnectionType extends Enum<ConnectionType>
| Enum Constant and Description |
|---|
BIGQUERY |
DATABRICKS |
MYSQL |
POSTGRESQL |
REDSHIFT |
SNOWFLAKE |
SQLDW |
SQLSERVER |
| Modifier and Type | Method and Description |
|---|---|
static ConnectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionType BIGQUERY
public static final ConnectionType DATABRICKS
public static final ConnectionType MYSQL
public static final ConnectionType POSTGRESQL
public static final ConnectionType REDSHIFT
public static final ConnectionType SNOWFLAKE
public static final ConnectionType SQLDW
public static final ConnectionType SQLSERVER
public static ConnectionType[] values()
for (ConnectionType c : ConnectionType.values()) System.out.println(c);
public static ConnectionType 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. All rights reserved.