-
QueryMapper.MapperUpdateNameCondition.between(T valueA,
T valueB)
Creates an update condition where the specified column is between the provided values.
Creates an update condition where the specified column contains the given value.
Creates an update condition where the specified column ends with the given value.
QueryMapper.MapperUpdateNameCondition.eq(T value)
Creates an update condition where the specified column name equals the provided value.
QueryMapper.MapperUpdateNameCondition.gt(T value)
Creates an update condition where the specified column is greater than the provided value.
QueryMapper.MapperUpdateNameCondition.gte(T value)
Creates an update condition where the specified column is greater than or equal to the provided value.
QueryMapper.MapperUpdateNameCondition.in(Iterable<T> values)
Creates an update condition where the specified column value is contained in the provided values.
QueryMapper.MapperUpdateNameCondition.like(String value)
Creates an update condition where the specified column matches the given pattern.
QueryMapper.MapperUpdateNameCondition.lt(T value)
Creates an update condition where the specified column is less than the provided value.
QueryMapper.MapperUpdateNameCondition.lte(T value)
Creates an update condition where the specified column is less than or equal to the provided value.
Creates an update condition where the specified column starts with the given value.