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

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

package org.unlaxer.parser.posix;

import org.unlaxer.parser.elementary.SingleCharacterParser;

public class SemiColonParser extends SingleCharacterParser{

	@Override
	public boolean isMatch(char target) {
		return ';' == target;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy