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

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

package org.unlaxer.parser.posix;

import org.unlaxer.parser.elementary.MappedSingleCharacterParser;

public class LowerParser extends MappedSingleCharacterParser{
	
	/**
	 * 
	 */
	private static final long serialVersionUID = -6892753972894812616L;

	public LowerParser() {
		super("abcdefghijklmnopqrstuvwxyz");
	}
	
	public final static LowerParser SINGLETON = new LowerParser();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy