- 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).-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic EntityConnection.Countall(is.codion.framework.domain.entity.EntityType entityType) builder(is.codion.framework.domain.entity.condition.Condition where) is.codion.framework.domain.entity.condition.Conditionhaving()static EntityConnection.Counthaving(is.codion.framework.domain.entity.condition.Condition condition) is.codion.framework.domain.entity.condition.Conditionwhere()static EntityConnection.Countwhere(is.codion.framework.domain.entity.condition.Condition 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
- Parameters:
entityType- the entity type- Returns:
- a
EntityConnection.Countinstance
-
where
static EntityConnection.Count where(is.codion.framework.domain.entity.condition.Condition condition) - Parameters:
condition- the where condition- Returns:
- a
EntityConnection.Countinstance
-
having
static EntityConnection.Count having(is.codion.framework.domain.entity.condition.Condition condition) - Parameters:
condition- the having condition- Returns:
- a
EntityConnection.Countinstance
-
builder
static EntityConnection.Count.Builder builder(is.codion.framework.domain.entity.condition.Condition where) - Parameters:
where- the where condition- Returns:
- a
EntityConnection.Count.Builderinstance
-