Interface BeforeWhere<T extends BeforeWhere<T>>

    • 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​(ValueHolder values,
                            java.lang.String columnPrefix)
        Continue query with WHERE
        Parameters:
        values - The ValueHolder to use as WHERE conditions
        columnPrefix - The column prefix for each constraint
        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