mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-13 13:35:13 +00:00
Fix Java 11 Javadoc.
This commit is contained in:
parent
8445d3a991
commit
16cc98fbfa
@ -160,10 +160,10 @@ public static boolean isNotEmpty(final Object object) {
|
||||
* <p>The caller responsible for thread-safety and exception handling of default value supplier.</p>
|
||||
*
|
||||
* <pre>
|
||||
* ObjectUtils.getIfNull(null, () -> null) = null
|
||||
* ObjectUtils.getIfNull(null, () -> null) = null
|
||||
* ObjectUtils.getIfNull(null, null) = null
|
||||
* ObjectUtils.getIfNull(null, () -> "") = ""
|
||||
* ObjectUtils.getIfNull(null, () -> "zz") = "zz"
|
||||
* ObjectUtils.getIfNull(null, () -> "") = ""
|
||||
* ObjectUtils.getIfNull(null, () -> "zz") = "zz"
|
||||
* ObjectUtils.getIfNull("abc", *) = "abc"
|
||||
* ObjectUtils.getIfNull(Boolean.TRUE, *) = Boolean.TRUE
|
||||
* </pre>
|
||||
|
Loading…
x
Reference in New Issue
Block a user