Interface BooleanExpression

    • Method Detail

      • and

        BooleanExpression and​(BooleanExpression expr)
        Method to return the AND of this expression and the other expression.
        Parameters:
        expr - The other expression
        Returns:
        The resultant (boolean) expression
      • or

        BooleanExpression or​(BooleanExpression expr)
        Method to return the OR of this expression and the other expression.
        Parameters:
        expr - The other expression
        Returns:
        The resultant (boolean) expression
      • not

        BooleanExpression not()
        Method to negate this expression.
        Returns:
        The negated expression
      • neg

        BooleanExpression neg()
        Method to return an expression that is the current expression negated.
        Returns:
        The negated expression