
org.unlaxer.tinyexpression.parser.StringPlusParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinyExpression Show documentation
Show all versions of tinyExpression Show documentation
TinyExpression implemented with Unlaxer
package org.unlaxer.tinyexpression.parser;
import org.unlaxer.parser.elementary.SingleCharacterParser;
public class StringPlusParser extends SingleCharacterParser implements StringExpression {
private static final long serialVersionUID = 4506811816785895944L;
public static StringPlusParser SINGLETON = new StringPlusParser();
@Override
public boolean isMatch(char target) {
return '+' == target;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy