public interface WhereStart<ONGOING_WHERE extends OngoingWhere<?,?>,ONGOING_WHERE_OR extends OngoingWhereOr<?>,ONGOING_WHERE_AND extends OngoingWhereAnd<?>>
Modifier and Type | Method and Description |
---|---|
ONGOING_WHERE_OR |
where(AndPredicateList andPredicateList)
Specifies WHERE predicates.
|
ONGOING_WHERE_OR |
where(java.util.List<Predicate> predicates)
Specifies WHERE predicates.
|
ONGOING_WHERE_AND |
where(OrPredicateList orPredicateList)
Specifies WHERE predicates.
|
ONGOING_WHERE |
where(Predicate predicate)
Adds a WHERE predicate.
|
ONGOING_WHERE_AND |
whereAnd(java.util.List<OrPredicateList> orPredicateLists)
Specifies WHERE predicates.
|
ONGOING_WHERE_OR |
whereOr(java.util.List<AndPredicateList> andPredicateLists)
Specifies WHERE predicates.
|
ONGOING_WHERE where(Predicate predicate)
predicate
- a WHERE predicate to addONGOING_WHERE_OR where(java.util.List<Predicate> predicates)
predicates
- WHERE predicates to addONGOING_WHERE_OR where(AndPredicateList andPredicateList)
andPredicateList
- a list of and-wise WHERE predicates to addONGOING_WHERE_AND where(OrPredicateList orPredicateList)
orPredicateList
- a list of or-wise WHERE predicates to addONGOING_WHERE_OR whereOr(java.util.List<AndPredicateList> andPredicateLists)
andPredicateLists
- or-wise sets of and-wise WHERE predicates to addONGOING_WHERE_AND whereAnd(java.util.List<OrPredicateList> orPredicateLists)
orPredicateLists
- and-wise sets of or-wise WHERE predicates to add