@@ -94,7 +94,7 @@ public XMLParserConfiguration (final boolean keepStrings) {
9494 * Configure the parser string processing to try and convert XML values to JSON values and
9595 * use the passed CDATA Tag Name the processing value. Pass <code>null</code> to
9696 * disable CDATA processing
97- * @param cDataTagName<code>null</code> to disable CDATA processing. Any other value
97+ * @param cDataTagName <code>null</code> to disable CDATA processing. Any other value
9898 * to use that value as the JSONObject key name to process as CDATA.
9999 * @deprecated This constructor has been deprecated in favor of using the new builder
100100 * pattern for the configuration.
@@ -109,7 +109,7 @@ public XMLParserConfiguration (final String cDataTagName) {
109109 * Configure the parser to use custom settings.
110110 * @param keepStrings <code>true</code> to parse all values as string.
111111 * <code>false</code> to try and convert XML string values into a JSON value.
112- * @param cDataTagName<code>null</code> to disable CDATA processing. Any other value
112+ * @param cDataTagName <code>null</code> to disable CDATA processing. Any other value
113113 * to use that value as the JSONObject key name to process as CDATA.
114114 * @deprecated This constructor has been deprecated in favor of using the new builder
115115 * pattern for the configuration.
@@ -182,7 +182,7 @@ protected XMLParserConfiguration clone() {
182182 * When parsing the XML into JSON, specifies if values should be kept as strings (<code>true</code>), or if
183183 * they should try to be guessed into JSON values (numeric, boolean, string)
184184 *
185- * @return The {@link # keepStrings} configuration value.
185+ * @return The <code> keepStrings</code> configuration value.
186186 */
187187 public boolean isKeepStrings () {
188188 return this .keepStrings ;
@@ -193,7 +193,7 @@ public boolean isKeepStrings() {
193193 * they should try to be guessed into JSON values (numeric, boolean, string)
194194 *
195195 * @param newVal
196- * new value to use for the {@link # keepStrings} configuration option.
196+ * new value to use for the <code> keepStrings</code> configuration option.
197197 *
198198 * @return The existing configuration will not be modified. A new configuration is returned.
199199 */
@@ -208,7 +208,7 @@ public XMLParserConfiguration withKeepStrings(final boolean newVal) {
208208 * been the value "content" but can be changed. Use <code>null</code> to indicate no CDATA
209209 * processing.
210210 *
211- * @return The {@link # cDataTagName} configuration value.
211+ * @return The <code> cDataTagName</code> configuration value.
212212 */
213213 public String getcDataTagName () {
214214 return this .cDataTagName ;
@@ -220,7 +220,7 @@ public String getcDataTagName() {
220220 * processing.
221221 *
222222 * @param newVal
223- * new value to use for the {@link # cDataTagName} configuration option.
223+ * new value to use for the <code> cDataTagName</code> configuration option.
224224 *
225225 * @return The existing configuration will not be modified. A new configuration is returned.
226226 */
@@ -235,7 +235,7 @@ public XMLParserConfiguration withcDataTagName(final String newVal) {
235235 * should be kept as attribute(<code>false</code>), or they should be converted to
236236 * <code>null</code>(<code>true</code>)
237237 *
238- * @return The {@link # convertNilAttributeToNull} configuration value.
238+ * @return The <code> convertNilAttributeToNull</code> configuration value.
239239 */
240240 public boolean isConvertNilAttributeToNull () {
241241 return this .convertNilAttributeToNull ;
@@ -247,7 +247,7 @@ public boolean isConvertNilAttributeToNull() {
247247 * <code>null</code>(<code>true</code>)
248248 *
249249 * @param newVal
250- * new value to use for the {@link # convertNilAttributeToNull} configuration option.
250+ * new value to use for the <code> convertNilAttributeToNull</code> configuration option.
251251 *
252252 * @return The existing configuration will not be modified. A new configuration is returned.
253253 */
@@ -262,7 +262,7 @@ public XMLParserConfiguration withConvertNilAttributeToNull(final boolean newVal
262262 * will be converted to target type defined to client in this configuration
263263 * {@code Map<String, XMLXsiTypeConverter<?>>} to parse values with attribute
264264 * xsi:type="integer" as integer, xsi:type="string" as string
265- * @return {@link # xsiTypeMap} unmodifiable configuration map.
265+ * @return <code> xsiTypeMap</code> unmodifiable configuration map.
266266 */
267267 public Map <String , XMLXsiTypeConverter <?>> getXsiTypeMap () {
268268 return this .xsiTypeMap ;
0 commit comments