public enum ColumnType extends java.lang.Enum<ColumnType> implements java.io.Serializable
ColumnType
object.Column
Enum Constant and Description |
---|
Character
A single character such as 'C'.
|
Complex
A complex number such as 3+4i.
|
Factor
A factor such as "foo".
|
Logical
A logical value.
|
Numeric
Any numeric value such as 10.2.
|
TimeData
A time date value such as jul=1.
|
Modifier and Type | Method and Description |
---|---|
static ColumnType |
getEnum(java.lang.String name) |
java.lang.String |
toString()
Returns a string.
|
static ColumnType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnType Character
public static final ColumnType Logical
public static final ColumnType Numeric
public static final ColumnType Complex
public static final ColumnType Factor
public static final ColumnType TimeData
public static ColumnType[] values()
for (ColumnType c : ColumnType.values()) System.out.println(c);
public static ColumnType 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<ColumnType>
public static ColumnType getEnum(java.lang.String name)