Adapted from com.google.common.base.Strings#emptyToNull.
(String string)
| 136 | |
| 137 | /** Adapted from {@code com.google.common.base.Strings#emptyToNull}. */ |
| 138 | public static String emptyToNull(String string) { |
| 139 | return string == null || string.isEmpty() ? null : string; |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Removes values from the array that meet the criteria for removal via the supplied {@link |