Enum KafkaDevServicesBuildTimeConfig.Provider
- java.lang.Object
-
- java.lang.Enum<KafkaDevServicesBuildTimeConfig.Provider>
-
- io.quarkus.kafka.client.deployment.KafkaDevServicesBuildTimeConfig.Provider
-
- All Implemented Interfaces:
Serializable,Comparable<KafkaDevServicesBuildTimeConfig.Provider>
- Enclosing class:
- KafkaDevServicesBuildTimeConfig
public static enum KafkaDevServicesBuildTimeConfig.Provider extends Enum<KafkaDevServicesBuildTimeConfig.Provider>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KAFKA_NATIVEREDPANDASTRIMZI
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDefaultImageName()static KafkaDevServicesBuildTimeConfig.ProvidervalueOf(String name)Returns the enum constant of this type with the specified name.static KafkaDevServicesBuildTimeConfig.Provider[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REDPANDA
public static final KafkaDevServicesBuildTimeConfig.Provider REDPANDA
-
STRIMZI
public static final KafkaDevServicesBuildTimeConfig.Provider STRIMZI
-
KAFKA_NATIVE
public static final KafkaDevServicesBuildTimeConfig.Provider KAFKA_NATIVE
-
-
Method Detail
-
values
public static KafkaDevServicesBuildTimeConfig.Provider[] 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 (KafkaDevServicesBuildTimeConfig.Provider c : KafkaDevServicesBuildTimeConfig.Provider.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KafkaDevServicesBuildTimeConfig.Provider 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
-
getDefaultImageName
public String getDefaultImageName()
-
-