public enum MessageFactoryType extends java.lang.Enum<MessageFactoryType>
Enum Constant and Description |
---|
WITH_CUSTOM_PAYLOADS |
WITH_KRYO_PAYLOADS |
WITH_PROTOBUF_PAYLOADS |
WITH_RAW_PAYLOADS |
Modifier and Type | Method and Description |
---|---|
static MessageFactoryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageFactoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageFactoryType WITH_KRYO_PAYLOADS
public static final MessageFactoryType WITH_PROTOBUF_PAYLOADS
public static final MessageFactoryType WITH_RAW_PAYLOADS
public static final MessageFactoryType WITH_CUSTOM_PAYLOADS
public static MessageFactoryType[] values()
for (MessageFactoryType c : MessageFactoryType.values()) System.out.println(c);
public static MessageFactoryType 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 © 2014–2024 The Apache Software Foundation. All rights reserved.