Enum Constant and Description |
---|
DataType16i |
DataType16u |
DataType32f |
DataType32i |
DataType32u |
DataType64f |
DataType64i |
DataType64u |
DataType8i |
DataType8u |
DataTypeUndefined |
Modifier and Type | Method and Description |
---|---|
static DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType DataTypeUndefined
public static final DataType DataType8i
public static final DataType DataType8u
public static final DataType DataType16i
public static final DataType DataType16u
public static final DataType DataType32i
public static final DataType DataType32u
public static final DataType DataType32f
public static final DataType DataType64i
public static final DataType DataType64u
public static final DataType DataType64f
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static 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