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.org.glassfish.json -
-
Uses of JsonArray in jakarta.json
Fields in jakarta.json declared as JsonArray Modifier and Type Field Description static JsonArrayJsonValue. EMPTY_JSON_ARRAYThe empty JSON array.Methods in jakarta.json that return JsonArray Modifier and Type Method Description default JsonArrayJsonValue. asJsonArray()Return the JsonValue as a JsonArrayJsonArrayJsonArrayBuilder. build()Returns the current array.JsonArrayJsonArray. getJsonArray(int index)Returns the array value at the specified position in this array.JsonArrayJsonObject. getJsonArray(String name)Returns the array value to which the specified name is mapped.JsonArrayJsonReader. readArray()Returns a JSON array that is represented in the input source.JsonArrayJsonPatch. toJsonArray()Returns theJsonPatchasJsonArray.Methods in jakarta.json with parameters of type JsonArray Modifier and Type Method Description static JsonArrayBuilderJson. createArrayBuilder(JsonArray array)Creates a JSON array builder, initialized with the specified arraydefault JsonArrayBuilderJsonBuilderFactory. createArrayBuilder(JsonArray array)Creates aJsonArrayBuilderinstance, initialized with an array.static JsonPatchJson. createPatch(JsonArray array)Creates a JSON Patch (RFC 6902) from the specified operations.static JsonPatchBuilderJson. createPatchBuilder(JsonArray array)Creates a JSON Patch builder (RFC 6902), initialized with the specified operations.voidJsonWriter. writeArray(JsonArray array)Writes the specified JSONarrayto 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 JsonArrayBuilderJsonProvider. createArrayBuilder(JsonArray array)Creates a JSON array builder, initialized with the specified array.JsonPatchJsonProvider. createPatch(JsonArray array)Creates a JSON Patch (RFC 6902) from the specified operations.JsonPatchBuilderJsonProvider. 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 JsonArrayJsonParser. getArray()Returns aJsonArrayand 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.Collectorthat accumulates the inputJsonValueelements into aJsonArray.Methods in jakarta.json.stream with parameters of type JsonArray Modifier and Type Method Description JsonParserJsonParserFactory. 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.Collectorthat implements a "group by" operation on the inputJsonValueelements. -
Uses of JsonArray in org.glassfish.json
Methods in org.glassfish.json that return JsonArray Modifier and Type Method Description JsonArrayJsonPatchBuilderImpl. buildAsJsonArray()Returns the patch operations in a JsonArraystatic JsonArrayJsonPatchImpl. diff(JsonStructure source, JsonStructure target)Generates a JSON Patch from the source and targetJsonStructure.JsonArrayJsonParserImpl. getArray()JsonArrayJsonPatchImpl. toJsonArray()Methods in org.glassfish.json with parameters of type JsonArray Modifier and Type Method Description JsonArrayBuilderJsonProviderImpl. createArrayBuilder(JsonArray array)JsonPatchJsonProviderImpl. createPatch(JsonArray array)JsonPatchBuilderJsonProviderImpl. createPatchBuilder(JsonArray array)Constructors in org.glassfish.json with parameters of type JsonArray Constructor Description JsonPatchBuilderImpl(JsonArray patch)Creates a JsonPatchBuilderImpl, starting with the specified JSON PatchJsonPatchImpl(JsonArray patch)Constructs a JsonPatchImpl
-