Enum IngestionMethodConfig
- java.lang.Object
-
- java.lang.Enum<IngestionMethodConfig>
-
- com.snowflake.kafka.connector.internal.streaming.IngestionMethodConfig
-
- All Implemented Interfaces:
Serializable,Comparable<IngestionMethodConfig>
public enum IngestionMethodConfig extends Enum<IngestionMethodConfig>
Enum representing the allowed values for configSnowflakeSinkConnectorConfig.INGESTION_METHOD_OPTNOTE: Please do not change ordering of this Enums, please append to the end.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SNOWPIPESNOWPIPE_STREAMING
-
Field Summary
Fields Modifier and Type Field Description static org.apache.kafka.common.config.ConfigDef.ValidatorVALIDATOR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static String[]allIngestionTypes()static IngestionMethodConfigdetermineIngestionMethod(Map<String,String> inputConf)Returns the Ingestion Method found in User Configuration for Snowflake Kafka Connector.StringtoString()static IngestionMethodConfigvalueOf(String name)Returns the enum constant of this type with the specified name.static IngestionMethodConfig[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SNOWPIPE
public static final IngestionMethodConfig SNOWPIPE
-
SNOWPIPE_STREAMING
public static final IngestionMethodConfig SNOWPIPE_STREAMING
-
-
Method Detail
-
values
public static IngestionMethodConfig[] 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 (IngestionMethodConfig c : IngestionMethodConfig.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IngestionMethodConfig 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
-
allIngestionTypes
public static String[] allIngestionTypes()
-
determineIngestionMethod
public static IngestionMethodConfig determineIngestionMethod(Map<String,String> inputConf)
Returns the Ingestion Method found in User Configuration for Snowflake Kafka Connector.Default is always
SNOWPIPEunless an invalid value is passed which results in exception.
-
toString
public String toString()
- Overrides:
toStringin classEnum<IngestionMethodConfig>
-
-