|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SVal>
spark.data.SVal
public enum SVal
This enumerates the types of values that can be stored in an SV
Enum Constant Summary | |
---|---|
ARRAY
The value is an SA array object. |
|
BOOLEAN
The value is boolean, true/false |
|
DOUBLE
The value is a double precision floating point number. |
|
LONG
The value is a long integer. |
|
NULL
There is no value |
|
OBJECT
The value is an SO object |
|
STRING
The value is a string |
|
SVVAL
This is used for fields that can hold an SV. |
Method Summary | |
---|---|
static SVal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SVal[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final SVal LONG
public static final SVal DOUBLE
public static final SVal BOOLEAN
public static final SVal STRING
public static final SVal OBJECT
public static final SVal ARRAY
public static final SVal SVVAL
public static final SVal NULL
Method Detail |
---|
public static SVal[] values()
for (SVal c : SVal.values()) System.out.println(c);
public static SVal 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |