public static enum ContainerInfo.DataType extends java.lang.Enum<ContainerInfo.DataType>
ContainerInfo| Enum Constant and Description |
|---|
BIT
The container holds binary data.
|
CHAR
The container holds character data.
|
| Modifier and Type | Method and Description |
|---|---|
static ContainerInfo.DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContainerInfo.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerInfo.DataType BIT
public static final ContainerInfo.DataType CHAR
public static ContainerInfo.DataType[] values()
for (ContainerInfo.DataType c : ContainerInfo.DataType.values()) System.out.println(c);
public static ContainerInfo.DataType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null