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

com.flagwind.commons.CharUtils Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package com.flagwind.commons;

public class CharUtils {


    public static boolean isLatin(char c) {

        return (int) c <= 255;
    }

    public static boolean isAscii(char c) {
        return (int) c <= 127;
    }

    public static boolean isLetterOrDigit(char c) {
        return Character.isLetterOrDigit(c);
    }

    public static boolean isWhiteSpace(char c) {

        int code = (int) c;

        return code == 32 || code >= 9 && code <= 13 || code == 160 || code == 133;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy