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

org.guppy4j.Strings Maven / Gradle / Ivy

The newest version!
package org.guppy4j;

/**
 * Static helper methods for String objects
 */
public class Strings {

    public static boolean exists(String s) {
        return Booleans.not(isNullOrEmpty(s));
    }

    public static boolean isNullOrEmpty(String s) {
        return s == null || s.trim().isEmpty();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy