public enum MessageMode extends Enum<MessageMode>
| Enum Constant and Description |
|---|
FLAT_MESSAGE
Use flat message
FlatMessage. |
MESSAGE
Use structured message
Message. |
| Modifier and Type | Method and Description |
|---|---|
static MessageMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageMode MESSAGE
Message.public static final MessageMode FLAT_MESSAGE
FlatMessage.public static MessageMode[] values()
for (MessageMode c : MessageMode.values()) System.out.println(c);
public static MessageMode 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 © 2005–2025 Onix Solutions. All rights reserved.