File tree Expand file tree Collapse file tree 1 file changed +16
-10
lines changed
jsonb/src/main/java/io/avaje/jsonb Expand file tree Collapse file tree 1 file changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -131,16 +131,6 @@ static Builder newBuilder() {
131
131
*/
132
132
<T > JsonType <T > typeOf (Object value );
133
133
134
- /**
135
- * Return the JsonAdapter used to read and write json for the given class.
136
- */
137
- <T > JsonAdapter <T > adapter (Class <T > cls );
138
-
139
- /**
140
- * Return the JsonAdapter used to read and write json for the given type.
141
- */
142
- <T > JsonAdapter <T > adapter (Type type );
143
-
144
134
/**
145
135
* Return the JsonReader used to read the given json content.
146
136
*/
@@ -179,6 +169,22 @@ static Builder newBuilder() {
179
169
*/
180
170
PropertyNames properties (String ... names );
181
171
172
+ /**
173
+ * Return the JsonAdapter used to read and write json for the given class.
174
+ * <p>
175
+ * JsonAdapter is generally used by generated code and your application code
176
+ * is expected to use {@link Jsonb#type(Class)} and {@link JsonType} instead.
177
+ */
178
+ <T > JsonAdapter <T > adapter (Class <T > cls );
179
+
180
+ /**
181
+ * Return the JsonAdapter used to read and write json for the given type.
182
+ * <p>
183
+ * JsonAdapter is generally used by generated code and your application code
184
+ * is expected to use {@link Jsonb#type(Type)} and {@link JsonType} instead.
185
+ */
186
+ <T > JsonAdapter <T > adapter (Type type );
187
+
182
188
/**
183
189
* Build the Jsonb instance adding JsonAdapter, Factory or AdapterBuilder.
184
190
*/
You can’t perform that action at this time.
0 commit comments