com.notronix.albacore.StringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AlbacoreDeed Show documentation
Show all versions of AlbacoreDeed Show documentation
A collection of human readable utility methods.
package com.notronix.albacore;
public abstract class StringUtils
{
public static boolean isBlank(String string)
{
return org.apache.commons.lang3.StringUtils.isBlank(string);
}
public static boolean isNotBlank(String string)
{
return !isBlank(string);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy