public enum DataKind extends Enum<DataKind>
| Enum Constant and Description |
|---|
DOUBLE
To indicate double-precision (64-bit) floating point values
|
FLOAT
To indicate single-precision (32-bit) floating point values
|
UINT16
To indicate 16-bit unsigned integer
|
UINT32
To indicate 32-bit unsigned integer
|
UINT8
To indicate 8-bit unsigned integer
|
| Modifier and Type | Method and Description |
|---|---|
static DataKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataKind UINT8
public static final DataKind UINT16
public static final DataKind UINT32
public static final DataKind FLOAT
public static final DataKind DOUBLE
public static DataKind[] values()
for (DataKind c : DataKind.values()) System.out.println(c);
public static DataKind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2009–2016. All rights reserved.