Package com.snowflake.kafka.connector
Enum SnowflakeSinkConnectorConfig.KafkaProvider
- java.lang.Object
-
- java.lang.Enum<SnowflakeSinkConnectorConfig.KafkaProvider>
-
- com.snowflake.kafka.connector.SnowflakeSinkConnectorConfig.KafkaProvider
-
- All Implemented Interfaces:
Serializable,Comparable<SnowflakeSinkConnectorConfig.KafkaProvider>
- Enclosing class:
- SnowflakeSinkConnectorConfig
public static enum SnowflakeSinkConnectorConfig.KafkaProvider extends Enum<SnowflakeSinkConnectorConfig.KafkaProvider>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFLUENTSELF_HOSTEDUNKNOWN
-
Field Summary
Fields Modifier and Type Field Description static List<String>PROVIDER_NAMES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SnowflakeSinkConnectorConfig.KafkaProviderof(String kafkaProviderStr)static SnowflakeSinkConnectorConfig.KafkaProvidervalueOf(String name)Returns the enum constant of this type with the specified name.static SnowflakeSinkConnectorConfig.KafkaProvider[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final SnowflakeSinkConnectorConfig.KafkaProvider UNKNOWN
-
SELF_HOSTED
public static final SnowflakeSinkConnectorConfig.KafkaProvider SELF_HOSTED
-
CONFLUENT
public static final SnowflakeSinkConnectorConfig.KafkaProvider CONFLUENT
-
-
Method Detail
-
values
public static SnowflakeSinkConnectorConfig.KafkaProvider[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SnowflakeSinkConnectorConfig.KafkaProvider c : SnowflakeSinkConnectorConfig.KafkaProvider.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SnowflakeSinkConnectorConfig.KafkaProvider valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
of
public static SnowflakeSinkConnectorConfig.KafkaProvider of(String kafkaProviderStr)
-
-