Uses of Interface
com.clumd.projects.javajson.api.JsonGenerator
| Package | Description |
|---|---|
| com.clumd.projects.javajson.api | |
| com.clumd.projects.javajson.core |
-
Uses of JsonGenerator in com.clumd.projects.javajson.api
Subinterfaces of JsonGenerator in com.clumd.projects.javajson.api Modifier and Type Interface Description interfaceJsonDefines the required methods callable on a JSON object, to get type-safe properties, check existence, and convert to various degrees of string (pretty print etc).interfaceJsonBuilderDefines the required methods to build a JSON object from Java in this framework.Methods in com.clumd.projects.javajson.api with parameters of type JsonGenerator Modifier and Type Method Description static JsonJsonParser. parse(JsonGenerator jsonable)A pass-through method to convert any object marked as capable of converting itself to JSON, into the JSON equivalent.Method parameters in com.clumd.projects.javajson.api with type arguments of type JsonGenerator Modifier and Type Method Description static List<Json>JsonParser. parseMultipleJSONables(Collection<JsonGenerator> multipleJsonAsGenerators)Parse a collection of Java Objects marked as capable of converting themselves to JSON into a multiple JSON objects.static Set<Json>JsonParser. parseMultipleJSONablesForDistinct(Collection<JsonGenerator> multipleJsonAsGenerators)The same asJsonParser.parseMultipleJSONables(Collection), but any duplicates will be filtered out. -
Uses of JsonGenerator in com.clumd.projects.javajson.core
Classes in com.clumd.projects.javajson.core that implement JsonGenerator Modifier and Type Class Description classBasicJsonBuilder