Uses of Interface
io.ebean.Junction
Packages that use Junction
-
Uses of Junction in io.ebean
Modifier and TypeMethodDescriptionExpressionList.and()
Start a list of expressions that will be joined by AND's returning the expression list the expressions are added to.static <T> Junction<T>
Expr.conjunction
(Query<T> query) Return a list of expressions that will be joined by AND's.<T> Junction<T>
ExpressionFactory.conjunction
(Query<T> query) Return a list of expressions that will be joined by AND's.<T> Junction<T>
ExpressionFactory.conjunction
(Query<T> query, ExpressionList<T> parent) Return a list of expressions that will be joined by AND's.ExpressionList.conjunction()
Start (and return) a list of expressions that will be joined by AND's.static <T> Junction<T>
Expr.disjunction
(Query<T> query) Return a list of expressions that will be joined by OR's.<T> Junction<T>
ExpressionFactory.disjunction
(Query<T> query) Return a list of expressions that will be joined by OR's.<T> Junction<T>
ExpressionFactory.disjunction
(Query<T> query, ExpressionList<T> parent) Return a list of expressions that will be joined by OR's.ExpressionList.disjunction()
Start (and return) a list of expressions that will be joined by OR's.<T> Junction<T>
ExpressionFactory.junction
(Junction.Type type, Query<T> query, ExpressionList<T> parent) Return a Text query junction for MUST, SHOULD or MUST NOT.ExpressionList.must()
Start a list of expressions that will be joined by MUST.ExpressionList.mustNot()
Start a list of expressions that will be joined by MUST NOT.ExpressionList.not()
Return a list of expressions that will be wrapped by NOT.ExpressionList.or()
Return a list of expressions that will be joined by OR's.ExpressionList.should()
Start a list of expressions that will be joined by SHOULD.