Uses of Interface
jakarta.json.JsonArray
-
Packages that use JsonArray Package Description jakarta.json Provides an object model API to process JSON.jakarta.json.spi Service Provider Interface (SPI) to plug in implementations for JSON processing objects.jakarta.json.stream Provides a streaming API to parse and generate JSON. -
-
Uses of JsonArray in jakarta.json
Fields in jakarta.json declared as JsonArray Modifier and Type Field Description static JsonArray
JsonValue. EMPTY_JSON_ARRAY
The empty JSON array.Methods in jakarta.json that return JsonArray Modifier and Type Method Description default JsonArray
JsonValue. asJsonArray()
Return the JsonValue as a JsonArrayJsonArray
JsonArrayBuilder. build()
Returns the current array.JsonArray
JsonArray. getJsonArray(int index)
Returns the array value at the specified position in this array.JsonArray
JsonObject. getJsonArray(String name)
Returns the array value to which the specified name is mapped.JsonArray
JsonReader. readArray()
Returns a JSON array that is represented in the input source.JsonArray
JsonPatch. toJsonArray()
Returns theJsonPatch
asJsonArray
.Methods in jakarta.json with parameters of type JsonArray Modifier and Type Method Description static JsonArrayBuilder
Json. createArrayBuilder(JsonArray array)
Creates a JSON array builder, initialized with the specified arraydefault JsonArrayBuilder
JsonBuilderFactory. createArrayBuilder(JsonArray array)
Creates aJsonArrayBuilder
instance, initialized with an array.static JsonPatch
Json. createPatch(JsonArray array)
Creates a JSON Patch (RFC 6902) from the specified operations.static JsonPatchBuilder
Json. createPatchBuilder(JsonArray array)
Creates a JSON Patch builder (RFC 6902), initialized with the specified operations.void
JsonWriter. writeArray(JsonArray array)
Writes the specified JSONarray
to the output source. -
Uses of JsonArray in jakarta.json.spi
Methods in jakarta.json.spi with parameters of type JsonArray Modifier and Type Method Description JsonArrayBuilder
JsonProvider. createArrayBuilder(JsonArray array)
Creates a JSON array builder, initialized with the specified array.JsonPatch
JsonProvider. createPatch(JsonArray array)
Creates a JSON Patch (RFC 6902) from the specified operations.JsonPatchBuilder
JsonProvider. createPatchBuilder(JsonArray array)
Creates a JSON Patch builder (RFC 6902), initialized with the specified operations. -
Uses of JsonArray in jakarta.json.stream
Methods in jakarta.json.stream that return JsonArray Modifier and Type Method Description default JsonArray
JsonParser. getArray()
Returns aJsonArray
and advance the parser to the the correspondingEND_ARRAY
.Methods in jakarta.json.stream that return types with arguments of type JsonArray Modifier and Type Method Description static Collector<JsonValue,JsonArrayBuilder,JsonArray>
JsonCollectors. toJsonArray()
Constructs ajava.util.stream.Collector
that accumulates the inputJsonValue
elements into aJsonArray
.Methods in jakarta.json.stream with parameters of type JsonArray Modifier and Type Method Description JsonParser
JsonParserFactory. createParser(JsonArray array)
Creates a JSON parser from the specified JSON array.Method parameters in jakarta.json.stream with type arguments of type JsonArray Modifier and Type Method Description static <T extends JsonArrayBuilder>
Collector<JsonValue,Map<String,T>,JsonObject>JsonCollectors. groupingBy(Function<JsonValue,String> classifier, Collector<JsonValue,T,JsonArray> downstream)
Constructs ajava.util.stream.Collector
that implements a "group by" operation on the inputJsonValue
elements.
-