com.github.sidhant92.boolparser.parser.BoolExpressionParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bool-parser-java Show documentation
Show all versions of bool-parser-java Show documentation
Java parser for boolean expressions
The newest version!
package com.github.sidhant92.boolparser.parser;
import com.github.sidhant92.boolparser.domain.Node;
import io.vavr.control.Try;
/**
* @author sidhant.aggarwal
* @since 05/03/2023
*/
public interface BoolExpressionParser {
Try parseExpression(final String expression);
Try parseExpression(final String expression, final String defaultField);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy