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

com.alibaba.excel.util.StringUtils Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package com.alibaba.excel.util;

/**
 * String utils
 *
 * @author jipengfei
 */
public class StringUtils {
    public static final String EMPTY = "";

    private StringUtils() {}

    public static boolean isEmpty(Object str) {
        return (str == null || EMPTY.equals(str));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy