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

com.hb0730.commons.lang.CharUtils Maven / Gradle / Ivy

There is a newer version: 2.1.2-RELEASE
Show newest version
package com.hb0730.commons.lang;

/**
 * chart util
 *
 * @author bing_huang
 * @since 1.0.0
 */
public class CharUtils {
    public static final char SPACE = ' ';

    /**
     * 是否为空白符
* * @param value 字符 * @return 是否空白符 * @see Character#isWhitespace(char) * @see Character#isSpaceChar(char) */ public static boolean isBlank(char value) { return isBlank((int) value); } /** * 是否为空白符
* * @param value 字符 * @return 是否空白符 * @see Character#isWhitespace(char) * @see Character#isSpaceChar(char) */ public static boolean isBlank(int value) { return Character.isWhitespace(value) || Character.isSpaceChar(value) || value == '\ufeff' || value == '\u202a'; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy