public static enum MessageObject.messageType extends Enum<MessageObject.messageType>
| Enum Constant and Description |
|---|
KAFKA |
RABBITMQ |
SERVICEBUS |
TEST |
| Modifier and Type | Method and Description |
|---|---|
static MessageObject.messageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageObject.messageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageObject.messageType KAFKA
public static final MessageObject.messageType RABBITMQ
public static final MessageObject.messageType SERVICEBUS
public static final MessageObject.messageType TEST
public static MessageObject.messageType[] values()
for (MessageObject.messageType c : MessageObject.messageType.values()) System.out.println(c);
public static MessageObject.messageType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.