1
1
< html >
2
2
<!--
3
3
4
- Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved.
4
+ Copyright (c) 2013, 2020 Oracle and/or its affiliates. All rights reserved.
5
5
6
6
This program and the accompanying materials are made available under the
7
7
terms of the Eclipse Public License v. 2.0, which is available at
40
40
it is often not as efficient as the streaming model and requires more memory.
41
41
The object model generates JSON output by navigating the entire tree at once.
42
42
43
- < h2 > The Streaming API</ h2 >
43
+ < h1 > The Streaming API</ h1 >
44
44
< p > The streaming API is similar to the StAX API for XML and consists of the
45
45
interfaces {@link jakarta.json.stream.JsonParser} and
46
46
{@link jakarta.json.stream.JsonGenerator}. {@code JsonParser}
@@ -65,7 +65,7 @@ <h2>The Streaming API</h2>
65
65
JSON data efficiently. Other JSON frameworks (such as JSON binding) can be
66
66
implemented using this API.</ p >
67
67
68
- < h2 > The Object Model API</ h2 >
68
+ < h1 > The Object Model API</ h1 >
69
69
< p > The object model API is similar to the DOM API for XML. It is a high-level
70
70
API that provides immutable object models for JSON object and array structures.
71
71
These JSON structures are represented as object models using the Java types
@@ -98,7 +98,7 @@ <h2>The Object Model API</h2>
98
98
how to write an empty {@code JsonObject} model using the interface
99
99
{@code JsonWriter}.
100
100
101
- < h2 > JSON Pointer, JSON Patch, and JSON Merge Patch</ h2 >
101
+ < h1 > JSON Pointer, JSON Patch, and JSON Merge Patch</ h1 >
102
102
Jakarta JSON Processing supports the latest standard on
103
103
< a href ="http://tools.ietf.org/html/rfc6901 "> JSON Pointer</ a > ,
104
104
< a Href ="http://tools.ietf.org/html/rfc6902 "> JSON Patch</ a > , and
0 commit comments