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
public static final CCLContainerType CCL_CONTAINER_CHAR
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.
IllegalArgumentException | If this enum type has no constant with the specified name. |
NullPointerException | If the argument is null. |