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

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

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)
        );

	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy