Enum KafkaChannelConfiguration.KafkaConfigurationType
- java.lang.Object
-
- java.lang.Enum<KafkaChannelConfiguration.KafkaConfigurationType>
-
- org.mases.datadistributionmanager.configuration.KafkaChannelConfiguration.KafkaConfigurationType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<KafkaChannelConfiguration.KafkaConfigurationType>
- Enclosing class:
- KafkaChannelConfiguration
public static enum KafkaChannelConfiguration.KafkaConfigurationType extends java.lang.Enum<KafkaChannelConfiguration.KafkaConfigurationType>
Kafka configuration type
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GLOBAL_CONF
Global configuration paramtersTOPIC_CONF
Topic configuration paramters
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KafkaChannelConfiguration.KafkaConfigurationType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static KafkaChannelConfiguration.KafkaConfigurationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GLOBAL_CONF
public static final KafkaChannelConfiguration.KafkaConfigurationType GLOBAL_CONF
Global configuration paramters
-
TOPIC_CONF
public static final KafkaChannelConfiguration.KafkaConfigurationType TOPIC_CONF
Topic configuration paramters
-
-
Method Detail
-
values
public static KafkaChannelConfiguration.KafkaConfigurationType[] 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 (KafkaChannelConfiguration.KafkaConfigurationType c : KafkaChannelConfiguration.KafkaConfigurationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KafkaChannelConfiguration.KafkaConfigurationType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-