public static enum MessageHeader.TransactionMode extends java.lang.Enum<MessageHeader.TransactionMode>
enumeration lists the transaction modes used by the SAP CC system to process the received operation messages and the service operations
that are included in these message envelopes.| Enum Constant and Description |
|---|
ALL |
FIRST_FAIL |
MOST |
TRY |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static MessageHeader.TransactionMode |
getFromCode(int code) |
java.lang.String |
getName() |
static MessageHeader.TransactionMode |
parse(java.lang.String name) |
static MessageHeader.TransactionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageHeader.TransactionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageHeader.TransactionMode ALL
public static final MessageHeader.TransactionMode FIRST_FAIL
public static final MessageHeader.TransactionMode MOST
public static final MessageHeader.TransactionMode TRY
public static MessageHeader.TransactionMode[] values()
for (MessageHeader.TransactionMode c : MessageHeader.TransactionMode.values()) System.out.println(c);
public static MessageHeader.TransactionMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getName()
public int getCode()
public static MessageHeader.TransactionMode parse(java.lang.String name)
public static MessageHeader.TransactionMode getFromCode(int code)