Boolean Expression Evaluation using JEP in Java

There are not many open source library available for Boolean expression evaluation. If we have a requirement of evaluating an expression of this kind

A && ( B || C || D)

A && B && (C || D)
.......
Continue Reading