-
QualificationBuilder.and()
Append an "AND" without any condition to the qualification
Typically, this will be used together with methods p
and q
below to append a complex OR condition
Append an "AND" condition to the qualification
Append a condition to the qualification
Sometimes, when a condition is added to the qualification, an "AND" should be added if this is NOT the initial condition in the qualification.
Append multiple conditions joined by OR, each variable in variables will be used in the condition template to be a formatted string and joined by OR later
For example, qualification.or("X.%s", Arrays.asList("1", "2"))
will give rise to a joined OR condition like "X.1 OR X.2"
Append an open parenthesis '(' to the qualification
Append a closed parenthesis ')' to the qualification