
extension.lang.Functions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of extension-lang Show documentation
Show all versions of extension-lang Show documentation
Utility classes for the JDK
The newest version!
package extension.lang;
import java.util.function.Supplier;
public enum Functions {;
public static boolean isNullOrEmpty(final String value) {
return value == null || value.isEmpty();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy