or method

Expression or(
  1. String expr
)

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

Implementation

Expression or(String expr) {
  return orFromExprParam(expr, null);
}