Interface BeforeWhere

  • All Superinterfaces:
    QueryPart
    All Known Implementing Classes:
    Delete, From, Join, Update

    public interface BeforeWhere
    extends QueryPart
    Implemented by keywords that precede the WHERE statement.
    • Method Detail

      • where

        default Where where()
        Continue query with WHERE
        Returns:
        The new WHERE statement
      • where

        default Where where​(ValueHolder values)
        Continue query with WHERE
        Parameters:
        values - The ValueHolder to use as WHERE conditions
        Returns:
        The new WHERE statement
      • where

        default Where where​(Where where)
        Accept an existing WHERE statement as predecessor
        Parameters:
        where - The existing WHERE statement
        Returns:
        Returns the passed WHERE statement
      • whereSQL

        default Where whereSQL​(java.lang.String sql)
        Use plain SQL to form this WHERE statement
        Parameters:
        sql - The sql string
        Returns:
        The new WHERE statement