public static enum Value.Type extends Enum<Value.Type>
Enum Constant and Description |
---|
BOOLEAN
Denotes a boolean value, i.e. true or false
|
DATE
Denotes a date, time or date/time value
|
ERROR
Denotes an error, e.g. a type mismatch
|
MATRIX
Denotes a row vector, column vector or two-dimensional matrix of values
|
NUMERIC
Denotes a numeric value, with or without decimals
|
TEXT
Denotes a text value, or a type of value derived from text
|
UNDEFINED
Denotes a value of undefined type
|
Modifier and Type | Method and Description |
---|---|
static Value.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Value.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Value.Type UNDEFINED
public static final Value.Type NUMERIC
public static final Value.Type TEXT
public static final Value.Type BOOLEAN
public static final Value.Type DATE
public static final Value.Type MATRIX
public static final Value.Type ERROR
public static Value.Type[] values()
for (Value.Type c : Value.Type.values()) System.out.println(c);
public static Value.Type 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 null