If the provided String is not null or empty. @param value to evaluate. @return true of the value is not null and not empty.
(String value)
| 301 | * @return true of the value is not null and not empty. |
| 302 | */ |
| 303 | public static boolean isNotBlank(String value) { |
| 304 | return value != null && !value.isEmpty(); |
| 305 | } |
| 306 | |
| 307 | /** |
| 308 | * If the provided String is null or empty. |