com.esri.arcgis.system
Interface JSONTokenType

All Superinterfaces:
Serializable

public interface JSONTokenType
extends Serializable

JSON Token Types.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Field Summary
static int JSONBoolean
          Boolean type.
static int JSONEndOfArray
          Array type.
static int JSONEndOfObject
          Object type.
static int JSONNull
          Null type.
static int JSONNumber
          Numeric type.
static int JSONPropertyValueDelimiter
          PropertyValue.
static int JSONStartOfArray
          Array type.
static int JSONStartOfObject
          Object type.
static int JSONString
          String type.
static int JSONUndefined
          Undefined.
static int JSONValueDelimiter
          PropertyValue.
 

Field Detail

JSONUndefined

static final int JSONUndefined
Undefined.

See Also:
Constant Field Values

JSONString

static final int JSONString
String type.

See Also:
Constant Field Values

JSONNumber

static final int JSONNumber
Numeric type.

See Also:
Constant Field Values

JSONBoolean

static final int JSONBoolean
Boolean type.

See Also:
Constant Field Values

JSONNull

static final int JSONNull
Null type.

See Also:
Constant Field Values

JSONStartOfObject

static final int JSONStartOfObject
Object type.

See Also:
Constant Field Values

JSONEndOfObject

static final int JSONEndOfObject
Object type.

See Also:
Constant Field Values

JSONStartOfArray

static final int JSONStartOfArray
Array type.

See Also:
Constant Field Values

JSONEndOfArray

static final int JSONEndOfArray
Array type.

See Also:
Constant Field Values

JSONPropertyValueDelimiter

static final int JSONPropertyValueDelimiter
PropertyValue.

See Also:
Constant Field Values

JSONValueDelimiter

static final int JSONValueDelimiter
PropertyValue.

See Also:
Constant Field Values