public static enum DataType.Format extends java.lang.Enum<DataType.Format>
| Enum Constant and Description |
|---|
BOOLEAN |
FLOATING |
INT |
STRING |
UINT |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static DataType.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataType.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType.Format FLOATING
public static final DataType.Format UINT
public static final DataType.Format INT
public static final DataType.Format BOOLEAN
public static final DataType.Format STRING
public static final DataType.Format UNKNOWN
public static DataType.Format[] values()
for (DataType.Format c : DataType.Format.values()) System.out.println(c);
public static DataType.Format 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