If the provided String is null or empty. @param value to evaluate. @return true if the value is null or empty.
(String value)
| 311 | * @return true if the value is null or empty. |
| 312 | */ |
| 313 | public static boolean isBlank(String value) { |
| 314 | return value == null || value.isEmpty(); |
| 315 | } |
| 316 | |
| 317 | /** |
| 318 | * Copy entire map of string collection. |