Uses of Class
org.noggit.JSONParser
-
Packages that use JSONParser Package Description org.apache.solr.common.util Common utility classes reused on both clients & server.org.noggit Fork of the Noggit JSON parser. -
-
Uses of JSONParser in org.apache.solr.common.util
Fields in org.apache.solr.common.util with type parameters of type JSONParser Modifier and Type Field Description static Function<JSONParser,ObjectBuilder>
Utils. MAPOBJBUILDER
static Function<JSONParser,ObjectBuilder>
Utils. MAPWRITEROBJBUILDER
static Function<JSONParser,ObjectBuilder>
Utils. STANDARDOBJBUILDER
Methods in org.apache.solr.common.util that return JSONParser Modifier and Type Method Description static JSONParser
Utils. getJSONParser(Reader reader)
Methods in org.apache.solr.common.util with parameters of type JSONParser Modifier and Type Method Description static void
JsonRecordReader. consumeTillMatchingEnd(JSONParser parser, int obj, int arr)
static List<Object>
JsonRecordReader. parseArrayFieldValue(int ev, JSONParser parser, org.apache.solr.common.util.JsonRecordReader.MethodFrameWrapper runnable)
static Object
JsonRecordReader. parseSingleFieldValue(int ev, JSONParser parser, org.apache.solr.common.util.JsonRecordReader.MethodFrameWrapper runnable)
void
JsonRecordReader. streamRecords(JSONParser parser, JsonRecordReader.Handler handler)
Method parameters in org.apache.solr.common.util with type arguments of type JSONParser Modifier and Type Method Description static Object
Utils. fromJSON(InputStream is, Function<JSONParser,ObjectBuilder> objBuilderProvider)
-
Uses of JSONParser in org.noggit
Methods in org.noggit with parameters of type JSONParser Modifier and Type Method Description static void
ObjectBuilder. checkEOF(JSONParser p)
static Object
ObjectBuilder. getVal(JSONParser parser)
consider to useObjectBuilder.getValStrict()
static Object
ObjectBuilder. getValStrict(JSONParser parser)
likeObjectBuilder.getVal()
, but also check that there is nothing remaining in the given stream after closing bracket.Constructors in org.noggit with parameters of type JSONParser Constructor Description ObjectBuilder(JSONParser parser)
-