Uses of Interface
io.ebean.Junction

Packages that use Junction
Package Description
io.ebean
Core API (see Database, DB and Query).
  • Uses of Junction in io.ebean

    Methods in io.ebean that return Junction
    Modifier and Type Method Description
    Junction<T> ExpressionList.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.
    Junction<T> 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.
    Junction<T> 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.
    Junction<T> ExpressionList.must()
    Start a list of expressions that will be joined by MUST.
    Junction<T> ExpressionList.mustNot()
    Start a list of expressions that will be joined by MUST NOT.
    Junction<T> ExpressionList.not()
    Return a list of expressions that will be wrapped by NOT.
    Junction<T> ExpressionList.or()
    Return a list of expressions that will be joined by OR's.
    Junction<T> ExpressionList.should()
    Start a list of expressions that will be joined by SHOULD.