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

org.unlaxer.tinyexpression.parser.IsPresentNameParser Maven / Gradle / Ivy

There is a newer version: 1.4.4
Show newest version
package org.unlaxer.tinyexpression.parser;

import org.unlaxer.parser.SuggestableParser;

public class IsPresentNameParser extends SuggestableParser{

	private static final long serialVersionUID = 2741478106997736124L;

	public IsPresentNameParser() {
		super(true, "isPresent");
	}
	
	@Override
	public String getSuggestString(String matchedString) {
		return "(".concat(matchedString).concat("){ }");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy