public static enum IMSCallout.SubFunction extends java.lang.Enum<IMSCallout.SubFunction>
SENDRECV
RECEIVE
The IMS application program uses this subfunction to retrieve the
complete response data from a previous incomplete ICAL call. If a SENDRECV
subfunction call completes with AIB return code X'0100' and reason code
X'000C', the response data did not fit in the response area. The application
program can expand the response area and then retrieve the complete response
with the RECEIVE subfunction call.
| Modifier and Type | Method and Description |
|---|---|
static IMSCallout.SubFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IMSCallout.SubFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IMSCallout.SubFunction SENDRECV
public static final IMSCallout.SubFunction RECEIVE
public static IMSCallout.SubFunction[] values()
for (IMSCallout.SubFunction c : IMSCallout.SubFunction.values()) System.out.println(c);
public static IMSCallout.SubFunction 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 null