Enum CCLCallType

Enum for different call types.

java.lang.Object

extended byjava.lang.Enum<CCLCallType>

extended bycom.microfocus.cics.client.CCLCallType

All Implemented Interfaces

Comparable<CCLCallType>, Serializable

Class Specifications

public enum CCLCallType

extends Enum<CCLCallType>

Enum Constant Summary

CCL_ASYNC

CCL async call

CCL_ASYNC_CALL

Async call

CCL_ASYNC_CALL_88

Async call 88

CCL_ASYNC_NOTIFY_MSG

CCL async notify message

CCL_ASYNC_NOTIFY_SEM

CCL axync notify semaphore

CCL_ASYNC_PARALLEL

Async parallel

CCL_ASYNC_PARALLEL_88

Async parallel call 88

CCL_GET_REPLY

CCL get reply

CCL_GET_REPLY_WAIT

CCL reply wait

CCL_GET_SPECIFIC_REPLY

CCL get specific reply

CCL_GET_SPECIFIC_REPLY_WAIT

CCL get specific reply wait

CCL_STATE_ASYNC

CCL state async

CCL_STATE_SYNC

CCL state sync

CCL_STATE_SYNC_MSG

CCL state sync message

CCL_STATE_SYNC_SEM

CCL state sync semaphore

CCL_SYNC

CCL state sync call

CCL_SYNC_CALL

Sync call

CCL_SYNC_CALL_88

Sync call 88

CCL_SYNC_PARALLEL

Sync parallel

CCL_SYNC_PARALLEL_88

Sync parallel call 88

Methods

Method Summary
static CCLCallType valueOf(String name)

Returns the enum constant of this type with the specified name.

static CCLCallType[] values()

Returns an array containing the constants of this enum type, in the order they are declared.

Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

Enum Constant Detail

CCL_ASYNC
public static final CCLCallType CCL_ASYNC 
			 

CCL async call

CCL_ASYNC_CALL
public static final CCLCallType CCL_ASYNC_CALL

Sync call

CCL_ASYNC_CALL_88
public static final CCLCallType CCL_ASYNC_CALL_88

Async call 88

CCL_ASYNC_NOTIFY_MSG
public static final CCLCallType CCL_ASYNC_NOTIFY_MSG 
			 

CCL async notify message

CCL_ASYNC_NOTIFY_SEM
public static final CCLCallType CCL_ASYNC_NOTIFY_SEM

CCL async notify semaphore

CCL_ASYNC_PARALLEL
public static final CCLCallType CCL_ASYNC_PARALLEL

Async parallel

CCL_ASYNC_PARALLEL_88
public static final CCLCallType CCL_ASYNC_PARALLEL_88

Async parallel call 88

CCL_GET_REPLY
public static final CCLCallType CCL_GET_REPLY

CCL get reply

CCL_GET_REPLY_WAIT
public static final CCLCallType CCL_GET_REPLY_WAIT

CCL reply wait

CCL_GET_SPECIFIC_REPLY
public static final CCLCallType CCL_GET_SPECIFIC_REPLY

CCL get specific reply

CCL_GET_SPECIFIC_REPLY_WAIT
public static final CCLCallType CCL_GET_SPECIFIC_REPLY_WAIT

CCL get specific reply wait

CCL_STATE_ASYNC
public static final CCLCallType CCL_STATE_ASYNC

CCL state async

CCL_STATE_SYNC
public static final CCLCallType CCL_STATE_SYNC

CCL state sync

CCL_STATE_SYNC_MSG
public static final CCLCallType CCL_STATE_SYNC_MSG

CCL state sync message

CCL_STATE_SYNC_SEM
public static final CCLCallType CCL_STATE_SYNC_SEM

CCL state sync semaphore

CCL_SYNC
public static final CCLCallType CCL_SYNC

CCL sync call

CCL_SYNC_CALL
public static final CCLCallType CCL_SYNC_CALL

Sync call

CCL_SYNC_CALL_88
public static final CCLCallType CCL_SYNC_CALL_88

Sync call 88

CCL_SYNC_PARALLEL
public static final CCLCallType CCL_SYNC_PARALLEL

Sync parallel

CCL_SYNC_PARALLEL_88
public static final CCLCallType CCL_SYNC_PARALLEL_88

Sync parallel call 88

Method Detail

valueOf
public static CCLCallType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Parameters:
name The name of the constant to be returned.
Returns:
The enum constant with the specified name.
Throws:
IllegalArgumentException If this enum type has no constant with the specified name.
NullPointerException If the argument is null.
values
public static CCLCallType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (CCLCallType c : CCLCallType.values())
    System.out.println(c);
Returns:
An array containing the constants of this enum type, in the order they are declared.