Android class model generation, including SQLite Database methods, based on a raw JSON object.
This console application takes a raw formatted single JSON object as an input, and generates the following as output:
- Simple class definition with proper value types (
Integer,String,Double,Boolean) and naming standards (camelCase). - SQLite Database support, with common methods definition (
addObj(),getObj(),getList()) - Able to set up a custom entity ID, in order to properly generate a
getObjById()method. - Able to define the name filter JSON field, in order to properly generate the
getObj()'s methodwhereClause
Download the compiled JAR file and run it from the console:
java -jar JSONParser-Android-3.0.2.jar- Bug where sometimes it would not generate the
whereClausefor thegetObj()method.
- SQLite method generation typo
- Support for additional SQLite Database methods.
- Ability to set up a custom entity ID.
- Ability to define the name filter JSON field.
- Common native imports to the class definition
- Support for
Doublevalues. - SQLite Database methods.
- Generate a Java class from a raw formatted JSON object.
- This CHANGELOG section.