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

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

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

import org.unlaxer.parser.elementary.IgnoreCaseWordParser;

public class TrueTokenParser extends IgnoreCaseWordParser implements BooleanExpression{

	private static final long serialVersionUID = -7628578328058106365L;

	public TrueTokenParser() {
		super("true");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy