-
- All Implemented Interfaces:
public final class Keywords<F extends AbstractExpression<?, ?, ?, ?, ?, ?>>
-
-
Field Summary
Fields Modifier and Type Field Description private final Keywords<F>isprivate final KeywordsNot<F>notprivate final KeywordsIgnoreCase<F>ignoreCase
-
Constructor Summary
Constructors Constructor Description Keywords(Field field, QueryStructure queryStructure, QueryPayload payload, Function2<QueryStructure, QueryPayload, F> createQueryField)
-
Method Summary
Modifier and Type Method Description final Keywords<F>is()final KeywordsNot<F>not()final KeywordsIgnoreCase<F>ignoreCase()final Feq(Object value)final FequalTo(Object value)final Fbetween(Object start, Object end)final FlessThan(Object value)final FlessThanOrEqual(Object value)final FgraterThan(Object value)final FgraterThanOrEqual(Object value)final Flike(String str)final Fin(Object values)in 查询 支持vararg, eg: in(1, 2, 3), in(intArray), etc. final Fnul()final FisNull()final FisNotNull()final Fsql(String sql)-
-
Constructor Detail
-
Keywords
Keywords(Field field, QueryStructure queryStructure, QueryPayload payload, Function2<QueryStructure, QueryPayload, F> createQueryField)
-
-
Method Detail
-
not
@Contract(pure = true) final KeywordsNot<F> not()
-
ignoreCase
@Contract(pure = true) final KeywordsIgnoreCase<F> ignoreCase()
-
lessThanOrEqual
@Contract(pure = true) final F lessThanOrEqual(Object value)
-
graterThan
@Contract(pure = true) final F graterThan(Object value)
-
graterThanOrEqual
@Contract(pure = true) final F graterThanOrEqual(Object value)
-
in
@Contract(pure = true) final F in(Object values)
in 查询 支持vararg, eg: in(1, 2, 3), in(intArray), etc. <br/> 支持有且仅有一个Collection作为参数, eg: in(list), in(set), etc.
-
-
-
-