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

io.castled.utils.StringUtils Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.utils;

public class StringUtils {

    public static String quoteText(String text) {
        return String.format("\"%s\"", text);
    }

    public static String singleQuote(String text) {
        return String.format("'%s'", text);
    }

    public static String nullIfEmpty(String text) {
        return org.apache.commons.lang3.StringUtils.isNotEmpty(text) ? text : null;
    }

    public static boolean isEmpty(String text) {
        return org.apache.commons.lang3.StringUtils.isEmpty(text);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy