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

ch.randelshofer.fastdoubleparser.chr.FormatCharSet Maven / Gradle / Ivy

The newest version!
/*
 * @(#)FormatCharSet.java
 * Copyright © 2024 Werner Randelshofer, Switzerland. MIT License.
 */
package ch.randelshofer.fastdoubleparser.chr;

/**
 * This format set contains all Unicode format chars.
 */
public class FormatCharSet implements CharSet {
    @Override
    public boolean containsKey(char ch) {
        return Character.getType(ch) == Character.FORMAT;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy