public static enum Runtime.ObjectType extends java.lang.Enum<Runtime.ObjectType>
| Enum Constant and Description |
|---|
BOOLEAN |
FUNCTION |
NUMBER |
OBJECT |
STRING |
SYMBOL |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getProtocolValue() |
static Runtime.ObjectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Runtime.ObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Runtime.ObjectType OBJECT
public static final Runtime.ObjectType FUNCTION
public static final Runtime.ObjectType UNDEFINED
public static final Runtime.ObjectType STRING
public static final Runtime.ObjectType NUMBER
public static final Runtime.ObjectType BOOLEAN
public static final Runtime.ObjectType SYMBOL
public static Runtime.ObjectType[] values()
for (Runtime.ObjectType c : Runtime.ObjectType.values()) System.out.println(c);
public static Runtime.ObjectType 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 getProtocolValue()