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 |
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. |
public static final CCLCallType CCL_ASYNC
CCL async call
public static final CCLCallType CCL_ASYNC_CALL
Sync call
public static final CCLCallType CCL_ASYNC_CALL_88
Async call 88
public static final CCLCallType CCL_ASYNC_NOTIFY_MSG
CCL async notify message
public static final CCLCallType CCL_ASYNC_NOTIFY_SEM
CCL async notify semaphore
public static final CCLCallType CCL_ASYNC_PARALLEL
Async parallel
public static final CCLCallType CCL_ASYNC_PARALLEL_88
Async parallel call 88
public static final CCLCallType CCL_GET_REPLY
CCL get reply
public static final CCLCallType CCL_GET_REPLY_WAIT
CCL reply wait
public static final CCLCallType CCL_GET_SPECIFIC_REPLY
CCL get specific reply
public static final CCLCallType CCL_GET_SPECIFIC_REPLY_WAIT
CCL get specific reply wait
public static final CCLCallType CCL_STATE_ASYNC
CCL state async
public static final CCLCallType CCL_STATE_SYNC
CCL state sync
public static final CCLCallType CCL_STATE_SYNC_MSG
CCL state sync message
public static final CCLCallType CCL_STATE_SYNC_SEM
CCL state sync semaphore
public static final CCLCallType CCL_SYNC
CCL sync call
public static final CCLCallType CCL_SYNC_CALL
Sync call
public static final CCLCallType CCL_SYNC_CALL_88
Sync call 88
public static final CCLCallType CCL_SYNC_PARALLEL
Sync parallel
public static final CCLCallType CCL_SYNC_PARALLEL_88
Sync parallel call 88
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.)
name | The name of the constant to be returned. |
IllegalArgumentException | If this enum type has no constant with the specified name. |
NullPointerException | If the argument is null. |
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);