QueryFilterNot<OBJ, R> extension

Extension for QueryBuilders.

on

Methods

allOf<E, RS>(Iterable<E> items, FilterRepeatModifier<OBJ, OBJ, E> modifier) QueryBuilder<OBJ, R, QAfterFilterCondition>

Available on QueryBuilder<OBJ, R, QFilterCondition>, provided by the QueryFilterNot extension

Joins the results of the modifier for each item in items using logical AND. So an object will be included if it matches all of the resulting filters.
anyOf<E, RS>(Iterable<E> items, FilterRepeatModifier<OBJ, OBJ, E> modifier) QueryBuilder<OBJ, R, QAfterFilterCondition>

Available on QueryBuilder<OBJ, R, QFilterCondition>, provided by the QueryFilterNot extension

Joins the results of the modifier for each item in items using logical OR. So an object will be included if it matches at least one of the resulting filters.
not() QueryBuilder<OBJ, R, QFilterCondition>

Available on QueryBuilder<OBJ, R, QFilterCondition>, provided by the QueryFilterNot extension

Complement the next filter condition or group.
oneOf<E, RS>(Iterable<E> items, FilterRepeatModifier<OBJ, R, E> modifier) QueryBuilder<OBJ, R, QAfterFilterCondition>

Available on QueryBuilder<OBJ, R, QFilterCondition>, provided by the QueryFilterNot extension

Joins the results of the modifier for each item in items using logical XOR. So an object will be included if it matches exactly one of the resulting filters.