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

org.petitparser.grammar.json.package-info Maven / Gradle / Ivy

The newest version!
/**
 * This package contains a complete implementation of JSON.
 * 

* {@link org.petitparser.grammar.json.JsonParserDefinition} builds nested Java * objects from a given JSON string. Consider the following code: * *

 * Parser json = new JsonParser();
 * Object result = json.parse('{"a": 1, "b": [2, 3.4], "c": false}');
 * System.out.println(result.value);  // {a: 1, b: [2, 3.4], c: false}
 * 
*

* The grammar definition * {@link org.petitparser.grammar.json.JsonGrammarDefinition} * can be subclassed to construct other objects. */ package org.petitparser.grammar.json;





© 2015 - 2025 Weber Informatics LLC | Privacy Policy