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

com.github.hugh.constant.guava.CharMatchers Maven / Gradle / Ivy

There is a newer version: 2.7.14
Show newest version
package com.github.hugh.constant.guava;

import com.google.common.base.CharMatcher;

/**
 * guava 常用的CharMatcher
 *
 * @author Hugh
 * @since 2.0.0
 **/
public class CharMatchers {

    /**
     * 数字0-9
     */
    public static final CharMatcher NUMBER_CHAR_MATCHER = CharMatcher.inRange('0', '9');

    /**
     * 数字与小数点
     */
    public static final CharMatcher NUMBERS_AND_DECIMAL_POINTS = NUMBER_CHAR_MATCHER.or(CharMatcher.is('.'));

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy