Interface QueryMapper.MapperNotCondition

All Superinterfaces:
QueryMapper.MapperNameCondition
Enclosing interface:
QueryMapper

public static interface QueryMapper.MapperNotCondition extends QueryMapper.MapperNameCondition
Represents a NOT condition in the delete query fluent API.

This interface is used to negate the next condition applied to a column, enabling inverse logic when building delete queries.

@Inject
Template template;

template.delete(Book.class)
    .where("author").not().eq("Ada")
    .execute();
The returned instance is mutable and not thread-safe. Support for negated conditions depends on the capabilities of the underlying NoSQL database.
Since:
1.0.0