Package apple.javascriptcore.enums
Class JSType
- java.lang.Object
-
- apple.javascriptcore.enums.JSType
-
public final class JSType extends java.lang.Object[@enum] JSType A constant identifying the type of a JSValue. [@constant] kJSTypeUndefined The unique undefined value. [@constant] kJSTypeNull The unique null value. [@constant] kJSTypeBoolean A primitive boolean value, one of true or false. [@constant] kJSTypeNumber A primitive number value. [@constant] kJSTypeString A primitive string value. [@constant] kJSTypeObject An object value (meaning that this JSValueRef is a JSObjectRef). [@constant] kJSTypeSymbol A primitive symbol value.
-
-
Field Summary
Fields Modifier and Type Field Description static intkJSTypeBooleanstatic intkJSTypeNullstatic intkJSTypeNumberstatic intkJSTypeObjectstatic intkJSTypeStringstatic intkJSTypeSymbolstatic intkJSTypeUndefined
-
-
-
Field Detail
-
kJSTypeUndefined
public static final int kJSTypeUndefined
- See Also:
- Constant Field Values
-
kJSTypeNull
public static final int kJSTypeNull
- See Also:
- Constant Field Values
-
kJSTypeBoolean
public static final int kJSTypeBoolean
- See Also:
- Constant Field Values
-
kJSTypeNumber
public static final int kJSTypeNumber
- See Also:
- Constant Field Values
-
kJSTypeString
public static final int kJSTypeString
- See Also:
- Constant Field Values
-
kJSTypeObject
public static final int kJSTypeObject
- See Also:
- Constant Field Values
-
kJSTypeSymbol
public static final int kJSTypeSymbol
- See Also:
- Constant Field Values
-
-