Package org.json.simple.parser
Class JSONParser
- java.lang.Object
-
- org.json.simple.parser.JSONParser
-
public class JSONParser extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
S_IN_ARRAY
static int
S_IN_ERROR
static int
S_IN_FINISHED_VALUE
static int
S_IN_OBJECT
static int
S_INIT
static int
S_PASSED_PAIR_KEY
-
Constructor Summary
Constructors Constructor Description JSONParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
parse(java.io.Reader in)
private int
peekStatus(java.util.Stack statusStack)
-
-
-
Field Detail
-
S_INIT
public static final int S_INIT
- See Also:
- Constant Field Values
-
S_IN_FINISHED_VALUE
public static final int S_IN_FINISHED_VALUE
- See Also:
- Constant Field Values
-
S_IN_OBJECT
public static final int S_IN_OBJECT
- See Also:
- Constant Field Values
-
S_IN_ARRAY
public static final int S_IN_ARRAY
- See Also:
- Constant Field Values
-
S_PASSED_PAIR_KEY
public static final int S_PASSED_PAIR_KEY
- See Also:
- Constant Field Values
-
S_IN_ERROR
public static final int S_IN_ERROR
- See Also:
- Constant Field Values
-
-