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

com.github.liuyehcf.framework.compile.engine.utils.CharacterUtil Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.github.liuyehcf.framework.compile.engine.utils;

/**
 * 字符工具类
 *
 * @author hechenfeng
 * @date 2018/6/29
 */
public abstract class CharacterUtil {
    public static boolean isBlankChar(char c) {
        return 9 <= c && c <= 13 || c == 32;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy