MCPcopy Index your code

hub / github.com/fangyidong/json-simple / functions

Functions124 in github.com/fangyidong/json-simple

↓ 90 callersMethodtoString
()
src/main/java/org/json/simple/ItemList.java:120
↓ 57 callersMethodwriteJSONString
Encode a list into JSON text and write it to out. If this list is also a JSONStreamAware or a JSONAware, JSONStreamAware and JSONAware specific behavi
src/main/java/org/json/simple/JSONArray.java:48
↓ 45 callersMethodwriteJSONString
Encode an object into JSON text and write it to out. <p> If this object is a Map or a List, and it's also a JSONStreamAware or a JSONAware, JSONStream
src/main/java/org/json/simple/JSONValue.java:120
↓ 42 callersMethodtoJSONString
Convert an object to JSON text. <p> If this object is a Map or a List, and it's also a JSONAware, JSONAware will be considered firstly. <p> DO NOT cal
src/main/java/org/json/simple/JSONValue.java:241
↓ 42 callersMethodtoJSONString
Convert a list to JSON text. The result is a JSON array. If this list is also a JSONAware, JSONAware specific behaviours will be omitted at this top l
src/main/java/org/json/simple/JSONArray.java:88
↓ 28 callersMethodadd
(int i,String item)
src/main/java/org/json/simple/ItemList.java:80
↓ 15 callersMethodgetPosition
@return The position of the beginning of the current token.
src/main/java/org/json/simple/parser/JSONParser.java:70
↓ 12 callersMethodparse
(String s)
src/main/java/org/json/simple/parser/JSONParser.java:74
↓ 12 callersMethodtoString
Returns a string representation of this array. This is equivalent to calling {@link JSONArray#toJSONString()}.
src/main/java/org/json/simple/JSONArray.java:378
↓ 9 callersMethodyylex
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs. @return the next token @e
src/main/java/org/json/simple/parser/Yylex.java:501
↓ 8 callersMethodget
@param i 0-based @return
src/main/java/org/json/simple/ItemList.java:112
↓ 8 callersMethodsize
()
src/main/java/org/json/simple/ItemList.java:116
↓ 7 callersMethodgetValue
()
src/test/java/org/json/simple/Test.java:205
↓ 7 callersMethodnextToken
()
src/main/java/org/json/simple/parser/JSONParser.java:268
↓ 7 callersMethodpeekStatus
(LinkedList statusStack)
src/main/java/org/json/simple/parser/JSONParser.java:38
↓ 6 callersMethodgetErrorType
()
src/main/java/org/json/simple/parser/ParseException.java:34
↓ 6 callersMethodsplit
(String s,String sp,List append,boolean isMultiToken)
src/main/java/org/json/simple/ItemList.java:46
↓ 5 callersMethodgetUnexpectedObject
@see org.json.simple.parser.Yytoken @return One of the following base on the value of errorType: ERROR_UNEXPECTED_CHAR java.lang.Character
src/main/java/org/json/simple/parser/ParseException.java:63
↓ 5 callersMethodparse
Parse JSON text into java object from the input source. Please use parseWithException() if you don't want to ignore the exception. @see org.json.simp
src/main/java/org/json/simple/JSONValue.java:44
↓ 5 callersMethodyytext
Returns the text matched by the current regular expression.
src/main/java/org/json/simple/parser/Yylex.java:422
↓ 4 callersMethodreset
Reset the parser to the initial state without resetting the underlying reader.
src/main/java/org/json/simple/parser/JSONParser.java:49
↓ 3 callersMethodcreateArrayContainer
(ContainerFactory containerFactory)
src/main/java/org/json/simple/parser/JSONParser.java:284
↓ 3 callersMethodcreateObjectContainer
(ContainerFactory containerFactory)
src/main/java/org/json/simple/parser/JSONParser.java:274
↓ 3 callersMethodescape
Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F). @param s @return
src/main/java/org/json/simple/JSONValue.java:258
↓ 3 callersMethodprimitive
Receive notification of the JSON primitive values: java.lang.String, java.lang.Number, java.lang.Boolean null @param value - Instance of the foll
src/main/java/org/json/simple/parser/ContentHandler.java:108
↓ 3 callersMethodstartArray
Receive notification of the beginning of a JSON array. @return false if the handler wants to stop parsing after return. @throws ParseException @see
src/main/java/org/json/simple/parser/ContentHandler.java:80
↓ 3 callersMethodstartObject
Receive notification of the beginning of a JSON object. @return false if the handler wants to stop parsing after return. @throws ParseException
src/main/java/org/json/simple/parser/ContentHandler.java:38
↓ 2 callersMethodendObjectEntry
Receive notification of the end of the value of previous object entry. @return false if the handler wants to stop parsing after return. @throws Parse
src/main/java/org/json/simple/parser/ContentHandler.java:70
↓ 2 callersMethodtoJSONString
Convert a map to JSON text. The result is a JSON object. If this map is also a JSONAware, JSONAware specific behaviours will be omitted at this top le
src/main/java/org/json/simple/JSONObject.java:86
↓ 2 callersMethodtoString
()
src/main/java/org/json/simple/JSONObject.java:102
↓ 2 callersMethodtoString
()
src/main/java/org/json/simple/parser/Yytoken.java:28
↓ 2 callersMethodwriteJSONString
Encode a map into JSON text and write it to out. If this map is also a JSONAware or JSONStreamAware, JSONAware or JSONStreamAware specific behaviours
src/main/java/org/json/simple/JSONObject.java:48
↓ 2 callersMethodyybegin
Enters a new lexical state @param newState the new lexical state
src/main/java/org/json/simple/parser/Yylex.java:414
↓ 2 callersMethodzzScanError
Reports an error that occured while scanning. In a wellformed scanner (no or only correct usage of yypushback(int) and a match-all fallback rule) thi
src/main/java/org/json/simple/parser/Yylex.java:465
↓ 1 callersMethodclear
()
src/main/java/org/json/simple/ItemList.java:139
↓ 1 callersMethodcreatArrayContainer
@return A List instance to store JSON array, or null if you want to use org.json.simple.JSONArray.
src/main/java/org/json/simple/parser/ContainerFactory.java:22
↓ 1 callersMethodcreateObjectContainer
@return A Map instance to store JSON object, or null if you want to use org.json.simple.JSONObject.
src/main/java/org/json/simple/parser/ContainerFactory.java:17
↓ 1 callersMethodendArray
Receive notification of the end of a JSON array. @return false if the handler wants to stop parsing after return. @throws ParseException @see #start
src/main/java/org/json/simple/parser/ContentHandler.java:90
↓ 1 callersMethodendJSON
Receive notification of the end of JSON processing. @throws ParseException
src/main/java/org/json/simple/parser/ContentHandler.java:28
↓ 1 callersMethodendObject
Receive notification of the end of a JSON object. @return false if the handler wants to stop parsing after return. @throws ParseException @see #star
src/main/java/org/json/simple/parser/ContentHandler.java:48
↓ 1 callersMethodescape
Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F). It's the same as JSONValue.escape() only for compatibili
src/main/java/org/json/simple/JSONObject.java:129
↓ 1 callersMethodisEnd
()
src/test/java/org/json/simple/Test.java:209
↓ 1 callersMethodisFound
()
src/test/java/org/json/simple/Test.java:217
↓ 1 callersMethodsetFound
(boolean found)
src/test/java/org/json/simple/Test.java:213
↓ 1 callersMethodsetMatchKey
(String matchKey)
src/test/java/org/json/simple/Test.java:201
↓ 1 callersMethodstartJSON
Receive notification of the beginning of JSON processing. The parser will invoke this method only once. @throws ParseException - JSONParser will s
src/main/java/org/json/simple/parser/ContentHandler.java:21
↓ 1 callersMethodstartObjectEntry
Receive notification of the beginning of a JSON object entry. @param key - Key of a JSON object entry. @return false if the handler wants to stop pa
src/main/java/org/json/simple/parser/ContentHandler.java:60
↓ 1 callersMethodtoJSONString
@return JSON text
src/main/java/org/json/simple/JSONAware.java:11
↓ 1 callersMethodwriteJSONString
write JSON string to out.
src/main/java/org/json/simple/JSONStreamAware.java:14
↓ 1 callersMethodyycharat
Returns the character at position <tt>pos</tt> from the matched text. It is equivalent to yytext().charAt(pos), but faster @param pos the position o
src/main/java/org/json/simple/parser/Yylex.java:438
↓ 1 callersMethodyylength
Returns the length of the matched text region.
src/main/java/org/json/simple/parser/Yylex.java:446
↓ 1 callersMethodyyreset
Resets the scanner to read from a new input stream. Does not close the old reader. All internal variables are reset, the old input stream <b>cannot</
src/main/java/org/json/simple/parser/Yylex.java:390
↓ 1 callersMethodzzRefill
Refills the input buffer. @return <code>false</code>, iff there was new input. @exception java.io.IOException if any I/O-Error occurs
src/main/java/org/json/simple/parser/Yylex.java:321
↓ 1 callersMethodzzUnpackAction
()
src/main/java/org/json/simple/parser/Yylex.java:54
↓ 1 callersMethodzzUnpackAttribute
()
src/main/java/org/json/simple/parser/Yylex.java:201
↓ 1 callersMethodzzUnpackCMap
Unpacks the compressed character translation table. @param packed the packed character translation table @return the unpacked character tra
src/main/java/org/json/simple/parser/Yylex.java:301
↓ 1 callersMethodzzUnpackRowMap
()
src/main/java/org/json/simple/parser/Yylex.java:87
MethodItemList
()
src/main/java/org/json/simple/ItemList.java:22
MethodJSONArray
Constructs an empty JSONArray.
src/main/java/org/json/simple/JSONArray.java:25
MethodJSONObject
()
src/main/java/org/json/simple/JSONObject.java:24
MethodParseException
(int errorType)
src/main/java/org/json/simple/parser/ParseException.java:20
MethodYylex
Creates a new scanner There is also a java.io.InputStream version of this constructor. @param in the java.io.Reader to read input from.
src/main/java/org/json/simple/parser/Yylex.java:281
MethodYytoken
(int type,Object value)
src/main/java/org/json/simple/parser/Yytoken.java:23
MethodaddAll
(ItemList list)
src/main/java/org/json/simple/ItemList.java:92
MethodcreatArrayContainer
()
src/test/java/org/json/simple/Test.java:113
MethodcreateObjectContainer
()
src/test/java/org/json/simple/Test.java:117
MethodendArray
()
src/test/java/org/json/simple/Test.java:143
MethodendArray
()
src/test/java/org/json/simple/Test.java:256
MethodendJSON
()
src/test/java/org/json/simple/Test.java:148
MethodendJSON
()
src/test/java/org/json/simple/Test.java:226
MethodendObject
()
src/test/java/org/json/simple/Test.java:152
MethodendObject
()
src/test/java/org/json/simple/Test.java:260
MethodendObjectEntry
()
src/test/java/org/json/simple/Test.java:157
MethodendObjectEntry
()
src/test/java/org/json/simple/Test.java:264
MethodgetArray
()
src/main/java/org/json/simple/ItemList.java:42
MethodgetItems
()
src/main/java/org/json/simple/ItemList.java:38
MethodgetMessage
()
src/main/java/org/json/simple/parser/ParseException.java:71
MethodgetPosition
()
src/main/java/org/json/simple/parser/Yylex.java:269
MethodgetPosition
@see org.json.simple.parser.JSONParser#getPosition() @return The character position (starting with 0) of the input where the error occurs.
src/main/java/org/json/simple/parser/ParseException.java:47
MethodparseWithException
Parse JSON text into java object from the input source. @see org.json.simple.parser.JSONParser @param in @return Instance of the following: org.jso
src/main/java/org/json/simple/JSONValue.java:96
Methodprimitive
(Object value)
src/test/java/org/json/simple/Test.java:162
Methodprimitive
(Object value)
src/test/java/org/json/simple/Test.java:230
Methodreset
()
src/main/java/org/json/simple/ItemList.java:143
MethodsetErrorType
(int errorType)
src/main/java/org/json/simple/parser/ParseException.java:38
MethodsetPosition
(int position)
src/main/java/org/json/simple/parser/ParseException.java:51
MethodsetSP
(String sp)
src/main/java/org/json/simple/ItemList.java:76
MethodsetUnexpectedObject
(Object unexpectedObject)
src/main/java/org/json/simple/parser/ParseException.java:67
MethodstartArray
()
src/test/java/org/json/simple/Test.java:167
MethodstartArray
()
src/test/java/org/json/simple/Test.java:242
MethodstartJSON
()
src/test/java/org/json/simple/Test.java:172
MethodstartJSON
()
src/test/java/org/json/simple/Test.java:221
MethodstartObject
()
src/test/java/org/json/simple/Test.java:176
MethodstartObject
()
src/test/java/org/json/simple/Test.java:247
MethodstartObjectEntry
(String key)
src/test/java/org/json/simple/Test.java:181
MethodstartObjectEntry
(String key)
src/test/java/org/json/simple/Test.java:251
MethodtestArraysOfArrays
()
src/test/java/org/json/simple/JSONValueTest.java:234
MethodtestBooleanArrayToString
()
src/test/java/org/json/simple/JSONValueTest.java:159
MethodtestBooleanArrayToString
()
src/test/java/org/json/simple/JSONArrayTest.java:214
MethodtestByteArrayToString
()
src/test/java/org/json/simple/JSONValueTest.java:9
MethodtestByteArrayToString
()
src/test/java/org/json/simple/JSONArrayTest.java:64
next →1–100 of 124, ranked by callers