org.unlaxer.parser.posix.AsciiParser Maven / Gradle / Ivy
package org.unlaxer.parser.posix;
import org.unlaxer.Range;
import org.unlaxer.parser.StaticParser;
import org.unlaxer.parser.elementary.MappedSingleCharacterParser;
public class AsciiParser extends MappedSingleCharacterParser implements StaticParser{
private static final long serialVersionUID = 2467932651767929962L;
public AsciiParser() {
super(new Range(0,127));
}
public final static AsciiParser SINGLETON = new AsciiParser();
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy