joy icon indicating copy to clipboard operation
joy copied to clipboard

Joy is yet another implementation of Jakarta JSON Processing API (JSON-P)

Results 6 joy issues
Sort by recently updated
recently updated
newest added

Say you have some JSON with an array somewhere inside, like this: ``` {"a": [1], "b": "the end"} ``` If you parse to the start of the array, then call...

Say you have some JSON which defines an object, and inside that object there is an array. You parse to the start of the array, then call `JsonParser#getArrayStream`, then call...

The JSON Parser uses internally BigDecimal objects for floating point values. This is less performant than a double, against the ability to use larger values. There should be a parser...

Additions to generate and parse a sequence of JSON values. See https://github.com/leadpony/joy/issues/14.

Joy is described as being: > Fully compliant with the latest specification of Jakarta JSON Processing API. In the latest specification, the [documentation for JsonParser](https://eclipse-ee4j.github.io/jsonp/docs/api/jakarta.json/jakarta/json/stream/JsonParser.html) says: > JsonParser can be...

`joy-yaml` currently adds support for `YamlParser` only, so `yaml` syntax input can be parsed via `jsonp` but `yaml` syntax files cannot be generated. Requesting support for generating `yaml` syntax output...