public enum DispositionMode extends Enum<DispositionMode>
Enum Constant and Description |
---|
AUTOMATIC_ACTION_MDN_SENT_AUTOMATICALLY |
AUTOMATIC_ACTION_MDN_SENT_MANUALLY |
MANUAL_ACTION_MDN_SENT_AUTOMATICALLY |
MANUAL_ACTION_MDN_SENT_MANUALLY |
Modifier and Type | Method and Description |
---|---|
String |
getActionMode() |
String |
getSendingMode() |
static DispositionMode |
parseDispositionMode(String dispositionModeString) |
String |
toString() |
static DispositionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DispositionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DispositionMode MANUAL_ACTION_MDN_SENT_MANUALLY
public static final DispositionMode MANUAL_ACTION_MDN_SENT_AUTOMATICALLY
public static final DispositionMode AUTOMATIC_ACTION_MDN_SENT_MANUALLY
public static final DispositionMode AUTOMATIC_ACTION_MDN_SENT_AUTOMATICALLY
public static DispositionMode[] values()
for (DispositionMode c : DispositionMode.values()) System.out.println(c);
public static DispositionMode 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 String getActionMode()
public String getSendingMode()
public String toString()
toString
in class Enum<DispositionMode>
public static DispositionMode parseDispositionMode(String dispositionModeString)
Apache Camel