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

org.unlaxer.parser.elementary.SingleQuoteParser Maven / Gradle / Ivy

package org.unlaxer.parser.elementary;

import org.unlaxer.parser.StaticParser;

public class SingleQuoteParser extends SingleStringParser implements StaticParser{

	private static final long serialVersionUID = -2018076837810041764L;

	@Override
	public boolean isMatch(String target) {
		return "'".equals(target);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy