@@ -138,6 +138,10 @@ public static byte[] encodeAsUTF8(String text) {
138
138
* Not to be used any more: call {@link JsonStringEncoder#getInstance()} (and then
139
139
* {@code quoteAsString()}) instead.
140
140
*
141
+ * @param rawText String to quote
142
+ *
143
+ * @return Quoted text as {@code char[]}
144
+ *
141
145
* @deprecated Since 2.10 (note: was accidentally removed but reintroduced as deprecated
142
146
* in 2.12.5, to be removed from 3.0)
143
147
*/
@@ -150,6 +154,9 @@ public static char[] quoteAsJsonText(String rawText) {
150
154
* Not to be used any more: call {@link JsonStringEncoder#getInstance()} (and then
151
155
* {@code quoteAsString()}) instead.
152
156
*
157
+ * @param input Textual content to quote
158
+ * @param output Builder to append quoted content
159
+ *
153
160
* @deprecated Since 2.10 (note: was accidentally removed but reintroduced as deprecated
154
161
* in 2.12.5, to be removed from 3.0)
155
162
*/
@@ -162,6 +169,10 @@ public static void quoteAsJsonText(CharSequence input, StringBuilder output) {
162
169
* Not to be used any more: call {@link JsonStringEncoder#getInstance()} (and then
163
170
* {@code quoteAsUTF8()}) instead.
164
171
*
172
+ * @param rawText String to quote
173
+ *
174
+ * @return Quoted text as {@code byte[]}
175
+ *
165
176
* @deprecated Since 2.10 (note: was accidentally removed but reintroduced as deprecated
166
177
* in 2.12.5, to be removed from 3.0)
167
178
*/
0 commit comments