|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Value.Type>
csheets.core.Value.Type
public static enum Value.Type
The recognized types of values
| Enum Constant Summary | |
|---|---|
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 |
|
| Method Summary | |
|---|---|
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're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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
| Method Detail |
|---|
public static final 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 name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||