Enum CCLContainerType

Enum for container type.
java.lang.Object

extended byjava.lang.Enum<CCLContainerType>

extended bycom.microfocus.cics.client.ContainerType

All Implemented Interfaces

Serializable, Comparable<CCLContainerType>

Class Specifications

public enum ContainerType

extends Enum<CCLContainerType>

Enum for different container types

Enum Constant Summary

CCL_CONTAINER_BIT

Bit type container

CCL_CONTAINER_CHAR

Char type container

Methods

Method Summary
static CCLContainerType valueOf(String name)

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

static CCLContainerType[] 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_CONTAINER_BIT
public static final CCLContainerType CCL_CONTAINER_BIT

Bit type container

CCL_CONTAINER_CHAR
public static final CCLContainerType CCL_CONTAINER_CHAR

Char type container

Method Detail

values
public static CCLContainerType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. The following method can be used to iterate over the constants:
for (ContainerType c : CCLContainerType.values())
    System.out.println(c);
Returns:
An array containing the constants of this enum type, in the order they are declared.
valueOf
public static CCLContainerType 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 of this type.
Note: 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.