public enum JCoServerCallType extends Enum<JCoServerCallType>
Enum Constant and Description |
---|
BACKGROUND_TASK
The call represents an asynchronous request with exactly once semantics, either tRFC or qRFC.
|
BACKGROUND_UNIT
The call represents an asynchronous request with exactly once semantics, a bgRFC.
|
SYNCHRONOUS
The call represents a standard synchronous request.
|
Modifier and Type | Method and Description |
---|---|
static JCoServerCallType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCoServerCallType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCoServerCallType SYNCHRONOUS
public static final JCoServerCallType BACKGROUND_TASK
public static final JCoServerCallType BACKGROUND_UNIT
public static JCoServerCallType[] values()
for (JCoServerCallType c : JCoServerCallType.values()) System.out.println(c);
public static JCoServerCallType 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 © 2024 SAP. All rights reserved.