Enum Constant and Description |
---|
character
A single character such as 'C'.
|
CLASS
A CLASS value such as integer.
|
complex
A complex number such as 3+4i.
|
factor
A factor such as "foo".
|
integer
An integer such as 10.
|
list_or_NULL
A
|
logical
A logical value.
|
NULL
A
|
numeric
Any numeric value such as 10.2.
|
ordered
A value that is in an order list.
|
single |
timeDate
A time date value such as jul=1.
|
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 character
public static final DataType integer
public static final DataType numeric
public static final DataType single
public static final DataType logical
public static final DataType complex
public static final DataType factor
public static final DataType timeDate
public static final DataType ordered
public static final DataType CLASS
public static final DataType NULL
public static final DataType list_or_NULL
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