All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.fastjson.JSONStreamContext Maven / Gradle / Ivy

The newest version!
package com.alibaba.fastjson;

class JSONStreamContext {

    final static int                  StartObject   = 1001;
    final static int                  PropertyKey   = 1002;
    final static int                  PropertyValue = 1003;
    final static int                  StartArray    = 1004;
    final static int                  ArrayValue    = 1005;

    protected final JSONStreamContext parent;

    protected int                     state;

    public JSONStreamContext(JSONStreamContext parent, int state){
        this.parent = parent;
        this.state = state;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy