public static enum KafkaProperties.MessageConverterMode extends java.lang.Enum<KafkaProperties.MessageConverterMode>
| Enum Constant and Description |
|---|
CLOUD_EVENT
Using Cloud Events, depending on the configuration of the serializers
is either stored as one JSON with everything, or only the data as value with all other information as
headers, with all headers starting with 'ce_'.
|
DEFAULT
Default way using an 'axon' format, with data as binary value and headers for additional information, where
most of the headers start with 'axon-'.
|
| Modifier and Type | Method and Description |
|---|---|
static KafkaProperties.MessageConverterMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KafkaProperties.MessageConverterMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KafkaProperties.MessageConverterMode DEFAULT
public static final KafkaProperties.MessageConverterMode CLOUD_EVENT
public static KafkaProperties.MessageConverterMode[] values()
for (KafkaProperties.MessageConverterMode c : KafkaProperties.MessageConverterMode.values()) System.out.println(c);
public static KafkaProperties.MessageConverterMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2010–2023. All rights reserved.