LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
global class JSONParser {
    global void clearCurrentToken() { }
    global Object clone() { }
    global Blob getBlobValue() { }
    global Boolean getBooleanValue() { }
    global String getCurrentName() { }
    global System.JSONToken getCurrentToken() { }
    global Datetime getDateTimeValue() { }
    global Date getDateValue() { }
    global Decimal getDecimalValue() { }
    global Double getDoubleValue() { }
    global Id getIdValue() { }
    global Integer getIntegerValue() { }
    global System.JSONToken getLastClearedToken() { }
    global Long getLongValue() { }
    global String getText() { }
    global Time getTimeValue() { }
    global Boolean hasCurrentToken() { }
    global System.JSONToken nextToken() { }
    global System.JSONToken nextValue() { }
    global Object readValueAs(System.Type apexType) { }
    global Object readValueAsStrict(System.Type apexType) { }
    global void skipChildren() { }
 
}