Enum CCLVersion

Enum for different versions of the CCL library.

java.lang.Object

extended byjava.lang.Enum<CCLVersion>

extended bycom.microfocus.cics.client.CCLVersion

All Implemented Interfaces

Comparable<CCLVersion>, Serializable

Class Specifications

public enum CCLVersion

extends Enum<CCLVersion>

Enum Constant Summary

CCL_VERSION_1

The version of CCL being used

Methods

Method Summary
static CCLVersion valueOf(String name)

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

static CCLVersion[] 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
getClassnotifynotifyAllwait, wait wait

Enum Constant Detail

CCL_VERSION_1
public static final CCLVersion CCL_VERSION_1

The version of CCL being used

Method Detail

valueOf
public static CCLVersion 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 CCLVersion[] 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 (CCLVersion c : CCLVersion.values())
    System.out.println(c);
Returns:
An array containing the constants of this enum type, in the order they are declared.