-
QueryMapper.MapperNameCondition.between(T valueA,
T valueB)
Creates a condition where the specified column value is between the two provided bounds.
Creates a condition where the specified column contains the given substring.
Creates a condition where the specified column ends with the given suffix.
QueryMapper.MapperNameCondition.eq(T value)
Creates a condition where the specified column value equals the given value.
QueryMapper.MapperNameCondition.gt(T value)
Creates a condition where the specified column value is greater than the given value.
QueryMapper.MapperNameCondition.gte(T value)
Creates a condition where the specified column value is greater than or equal to the given value.
QueryMapper.MapperNameCondition.in(Iterable<T> values)
Creates a condition where the specified column value exists within the given collection.
QueryMapper.MapperNameCondition.like(String value)
Creates a condition where the specified column value matches the provided pattern.
QueryMapper.MapperNameCondition.lt(T value)
Creates a condition where the specified column value is less than the given value.
QueryMapper.MapperNameCondition.lte(T value)
Creates a condition where the specified column value is less than or equal to the given value.
Creates a condition where the specified column starts with the given prefix.