Interface EntityConnection.Count

Enclosing interface:
EntityConnection

public static interface EntityConnection.Count
A class encapsulating count query parameters. A factory class for EntityConnection.Count instances via all(EntityType), where(Condition) and having(Condition). A factory class for EntityConnection.Count.Builder instances via builder(Condition).
  • Method Details

    • where

      is.codion.framework.domain.entity.condition.Condition where()
      Returns:
      the where condition
    • having

      is.codion.framework.domain.entity.condition.Condition having()
      Returns:
      the having condition
    • all

      static EntityConnection.Count all(is.codion.framework.domain.entity.EntityType entityType)
      Parameters:
      entityType - the entity type
      Returns:
      a EntityConnection.Count instance
    • where

      static EntityConnection.Count where(is.codion.framework.domain.entity.condition.Condition condition)
      Parameters:
      condition - the where condition
      Returns:
      a EntityConnection.Count instance
    • having

      static EntityConnection.Count having(is.codion.framework.domain.entity.condition.Condition condition)
      Parameters:
      condition - the having condition
      Returns:
      a EntityConnection.Count instance
    • builder

      static EntityConnection.Count.Builder builder(is.codion.framework.domain.entity.condition.Condition where)
      Parameters:
      where - the where condition
      Returns:
      a EntityConnection.Count.Builder instance