All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.atomicbits.scraml.gradleplugin.util.StringUtil Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
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