Interface EntitySelectQuery.Builder

Enclosing interface:
EntitySelectQuery

public static interface EntitySelectQuery.Builder
  • Method Details

    • columns

      Specifies the columns clause to use, without the SELECT keyword.
      Parameters:
      columns - the columns clause
      Returns:
      this Builder instance
    • from

      Specifies the from clause to use.
      Parameters:
      from - the from clause, without the FROM keyword
      Returns:
      this Builder instance
    • where

      Specifies the where clause to use, without the WHERE keyword.
      Parameters:
      where - the where clause
      Returns:
      this Builder instance
    • groupBy

      Specifies the group by clause to use, without the GROUP BY keywords.
      Parameters:
      groupBy - the group by clause
      Returns:
      this Builder instance
    • having

      Specifies the having clause to use, without the HAVING keyword.
      Parameters:
      having - the having clause
      Returns:
      this Builder instance
    • orderBy

      Specifies the order by clause to use, without the ORDER BY keywords.
      Parameters:
      orderBy - the order by clause
      Returns:
      this Builder instance
    • build

      Returns:
      a new EntitySelectQuery instance