public enum StorageConnectorType extends Enum<StorageConnectorType>
Enum Constant and Description |
---|
ADLS |
BIGQUERY |
GCS |
HOPSFS |
JDBC |
KAFKA |
RDS |
REDSHIFT |
S3 |
SNOWFLAKE |
Modifier and Type | Method and Description |
---|---|
static StorageConnectorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageConnectorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageConnectorType HOPSFS
public static final StorageConnectorType S3
public static final StorageConnectorType JDBC
public static final StorageConnectorType REDSHIFT
public static final StorageConnectorType ADLS
public static final StorageConnectorType SNOWFLAKE
public static final StorageConnectorType KAFKA
public static final StorageConnectorType GCS
public static final StorageConnectorType BIGQUERY
public static final StorageConnectorType RDS
public static StorageConnectorType[] values()
for (StorageConnectorType c : StorageConnectorType.values()) System.out.println(c);
public static StorageConnectorType 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 © 2025. All rights reserved.