public interface InRelationBuilder<ResultT>
Modifier and Type | Method and Description |
---|---|
ResultT |
build(String operator,
Term rightOperand) |
default ResultT |
in(BindMarker bindMarker)
Builds an IN relation where the whole set of possible values is a bound variable, as in
IN ? . |
default ResultT |
in(Iterable<Term> alternatives)
Builds an IN relation where the arguments are the possible values, as in
IN (term1,
term2...) . |
default ResultT |
in(Term... alternatives)
Var-arg equivalent of
in(Iterable) . |
@NonNull default ResultT in(@NonNull BindMarker bindMarker)
IN ?
.@NonNull default ResultT in(@NonNull Iterable<Term> alternatives)
IN (term1,
term2...)
.@NonNull default ResultT in(@NonNull Term... alternatives)
in(Iterable)
.Copyright © 2017–2022. All rights reserved.