and method

Expression and(
  1. String expr
)

Combine the current expression with the given expression using the intersection operator (AND). @param expr Expression to combine with. @return Expression

Implementation

Expression and(String expr) {
  return andWithParam(expr, null);
}