![JAR search and dependency download from the Maven repository](/logo.png)
org.bitbucket.gkutiel.booly.Parser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of booly Show documentation
Show all versions of booly Show documentation
A boolean expression evaluator for java
The newest version!
package org.bitbucket.gkutiel.booly;
public interface Parser {
void _false();
void _true();
void and();
void eof();
void eq();
void geq();
void gt();
void leq();
void lp();
void lt();
void not();
void num(double num);
void or();
void rp();
void str(String str);
void symbol(String id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy