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

io.github.firefang.power.common.util.StringUtil Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package io.github.firefang.power.common.util;

/**
 * 字符串工具类
 * 
 * @author xinufo
 *
 */
public abstract class StringUtil {

    public static boolean hasLength(String str) {
        return str == null ? false : str.length() > 0;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy