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
public static final CCLCallType CCL_ASYNC_CALL
public static final CCLCallType CCL_ASYNC_CALL_88
public static final CCLCallType CCL_ASYNC_NOTIFY_MSG
public static final CCLCallType CCL_ASYNC_NOTIFY_SEM
public static final CCLCallType CCL_ASYNC_PARALLEL
public static final CCLCallType CCL_ASYNC_PARALLEL_88
public static final CCLCallType CCL_GET_REPLY
public static final CCLCallType CCL_GET_REPLY_WAIT
public static final CCLCallType CCL_GET_SPECIFIC_REPLY
public static final CCLCallType CCL_GET_SPECIFIC_REPLY_WAIT
public static final CCLCallType CCL_STATE_ASYNC
public static final CCLCallType CCL_STATE_SYNC
public static final CCLCallType CCL_STATE_SYNC_MSG
public static final CCLCallType CCL_STATE_SYNC_SEM
public static final CCLCallType CCL_SYNC
public static final CCLCallType CCL_SYNC_CALL
public static final CCLCallType CCL_SYNC_CALL_88
public static final CCLCallType CCL_SYNC_PARALLEL
public static final CCLCallType CCL_SYNC_PARALLEL_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.)
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);