public static enum Jt400Configuration.MessageAction extends Enum<Jt400Configuration.MessageAction>
| Enum Constant and Description |
|---|
OLD
Keep the message in the message queue and mark it as an old message
|
REMOVE
Remove the message from the message queue
|
SAME
Keep the message in the message queue without changing its new or old designation
|
| Modifier and Type | Method and Description |
|---|---|
String |
getJt400Value()
Returns the string literal value that can be used for APIs from the JTOpen (jt400) libraries
|
static Jt400Configuration.MessageAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Jt400Configuration.MessageAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Jt400Configuration.MessageAction OLD
public static final Jt400Configuration.MessageAction REMOVE
public static final Jt400Configuration.MessageAction SAME
public static Jt400Configuration.MessageAction[] values()
for (Jt400Configuration.MessageAction c : Jt400Configuration.MessageAction.values()) System.out.println(c);
public static Jt400Configuration.MessageAction 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 getJt400Value()
Apache Camel