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

org.unlaxer.vocabulary.ebnf.part1.RepetitionSymbol Maven / Gradle / Ivy

package org.unlaxer.vocabulary.ebnf.part1;

import org.unlaxer.parser.elementary.SingleCharacterParser;

/**
 * repetition symbol = ’*’;
 *
 */
public class RepetitionSymbol extends SingleCharacterParser{

	private static final long serialVersionUID = -4839704452909257023L;

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy