org.unlaxer.tinyexpression.parser.StringEndsWithParser 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
The newest version!
package org.unlaxer.tinyexpression.parser;
import java.util.List;
import org.unlaxer.parser.Parser;
import org.unlaxer.parser.Parsers;
public class StringEndsWithParser extends StringMethodExpressionParser implements BooleanExpression{
private static final long serialVersionUID = 6896630990248605254L;
List parsers;
public StringEndsWithParser() {
super();
}
@Override
public org.unlaxer.parser.Parsers getLazyParsers() {
return
// StringEndsWith:=StringExpression'.startsWith('StringExpression')';
new Parsers(
Parser.get(StringExpressionParser.class),
Parser.get(StringEndsWithMethodParser.class)
);
}
}