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

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

package org.unlaxer.parser.posix;

import org.unlaxer.parser.elementary.MappedSingleCharacterParser;

public class UpperParser extends MappedSingleCharacterParser{
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 1159476721895377082L;

	public UpperParser() {
		super("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
	}
	
	public final static UpperParser SINGLETON = new UpperParser();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy