public static enum ScriptValue.Type extends Enum<ScriptValue.Type>
| Enum Constant and Description |
|---|
BYTE_ARRAY |
FEATURE |
INPUT_STREAM |
JS_FUNCTION |
JSON |
LIST |
MAP |
NULL |
PRIMITIVE |
STRING |
UNKNOWN |
XML |
| Modifier and Type | Method and Description |
|---|---|
static ScriptValue.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScriptValue.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScriptValue.Type NULL
public static final ScriptValue.Type UNKNOWN
public static final ScriptValue.Type PRIMITIVE
public static final ScriptValue.Type STRING
public static final ScriptValue.Type MAP
public static final ScriptValue.Type LIST
public static final ScriptValue.Type JSON
public static final ScriptValue.Type XML
public static final ScriptValue.Type JS_FUNCTION
public static final ScriptValue.Type BYTE_ARRAY
public static final ScriptValue.Type INPUT_STREAM
public static final ScriptValue.Type FEATURE
public static ScriptValue.Type[] values()
for (ScriptValue.Type c : ScriptValue.Type.values()) System.out.println(c);
public static ScriptValue.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 nullCopyright © 2019. All rights reserved.