com.mageddo.commons.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toggle-first-core Show documentation
Show all versions of toggle-first-core Show documentation
Enable and disable your features in production on a button click
package com.mageddo.commons;
public final class StringUtils {
private StringUtils() {
}
public static boolean isBlank(String s) {
return s == null || s.trim().isEmpty();
}
}