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

org.unlaxer.parser.posix.GraphParser Maven / Gradle / Ivy

package org.unlaxer.parser.posix;

import org.unlaxer.Range;
import org.unlaxer.parser.elementary.MappedSingleCharacterParser;

public class GraphParser extends MappedSingleCharacterParser{
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 7173456257650407336L;

	public GraphParser() {
		super(new Range(33,126));
	}
	
	public final static GraphParser SINGLETON = new GraphParser();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy