This commit is contained in:
Looly
2022-09-27 23:38:05 +08:00
parent 246e61678e
commit d458b1451c
80 changed files with 227 additions and 192 deletions

View File

@@ -178,7 +178,7 @@ public interface JSON extends Converter, Cloneable, Serializable {
}
@Override
default Object convert(Type targetType, Object value) throws ConvertException {
default Object convert(final Type targetType, final Object value) throws ConvertException {
return JSONConverter.of(getConfig()).convert(targetType, value);
}
}

View File

@@ -6,9 +6,9 @@
* </ul>
* JSON封装主要包括JSON表示和JSON转换
*
* <pre>
* Java对象 &lt;----&gt; JSON对象 &lt;----&gt; JSON字符串
* </pre>
* <pre>{@code
* Java对象 <----> JSON对象 <----> JSON字符串
* }</pre>
*
*
* @author looly