io.atomicbits.scraml.gradleplugin.util.StringUtil Maven / Gradle / Ivy
package io.atomicbits.scraml.gradleplugin.util;
/**
* Created by peter on 18/10/17.
*/
public class StringUtil {
static public boolean isNullOrEmpty(String text) {
return text == null || text.isEmpty();
}
static public boolean isDefined(String text) {
return !isNullOrEmpty(text);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy