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

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

package org.unlaxer.parser.posix;

import org.unlaxer.parser.elementary.MappedSingleCharacterParser;

public class AlphabetNumericParser extends MappedSingleCharacterParser {

	private static final long serialVersionUID = 6303389520321244429L;

	public AlphabetNumericParser() {
		super("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
	}

	public final static AlphabetNumericParser SINGLETON = new AlphabetNumericParser();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy