public enum MessageHandlingPolicy extends Enum<MessageHandlingPolicy>
| Enum Constant and Description |
|---|
ALWAYS_FORWARD |
DISCARD |
LOG |
REDIRECT |
| Modifier and Type | Method and Description |
|---|---|
static MessageHandlingPolicy |
fromValue(String value) |
String |
toString() |
String |
value() |
static MessageHandlingPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageHandlingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageHandlingPolicy DISCARD
public static final MessageHandlingPolicy LOG
public static final MessageHandlingPolicy REDIRECT
public static final MessageHandlingPolicy ALWAYS_FORWARD
public static MessageHandlingPolicy[] values()
for (MessageHandlingPolicy c : MessageHandlingPolicy.values()) System.out.println(c);
public static MessageHandlingPolicy 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 nullpublic static MessageHandlingPolicy fromValue(String value)
public String toString()
toString in class Enum<MessageHandlingPolicy>public String value()