public enum ContainerType
extends Enum<CCLContainerType>
Enum for different container types
CCL_CONTAINER_BIT |
Bit type container |
CCL_CONTAINER_CHAR |
Char type container |
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. |
public static final CCLContainerType CCL_CONTAINER_BIT
Bit type container
public static final CCLContainerType CCL_CONTAINER_CHAR
Char type container
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);
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.
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. |