Browse Source

Improve Javadoc for ObjectUtils.nullSafeConciseToString()

pull/30308/head
Sam Brannen 3 years ago
parent
commit
2bac371c5b
  1. 4
      spring-core/src/main/java/org/springframework/util/ObjectUtils.java

4
spring-core/src/main/java/org/springframework/util/ObjectUtils.java

@ -909,8 +909,8 @@ public abstract class ObjectUtils {
* with {@code @} and a hex string form of the object's identity hash code</li> * with {@code @} and a hex string form of the object's identity hash code</li>
* </ul> * </ul>
* <p>In the context of this method, a <em>simple type</em> is any of the following: * <p>In the context of this method, a <em>simple type</em> is any of the following:
* a primitive or primitive wrapper (excluding {@code Void} and {@code void}), * a primitive wrapper (excluding {@link Void}), an {@link Enum}, a {@link Number},
* an enum, a Number, a Date, a Temporal, a URI, a URL, or a Locale. * a {@link Date}, a {@link Temporal}, a {@link URI}, a {@link URL}, or a {@link Locale}.
* @param obj the object to build a string representation for * @param obj the object to build a string representation for
* @return a concise string representation of the supplied object * @return a concise string representation of the supplied object
* @since 5.3.27 * @since 5.3.27

Loading…
Cancel
Save