Module is.codion.framework.model
Package is.codion.framework.model
Interface EntityQueryModel.SelectAttributes
- Enclosing interface:
EntityQueryModel
public static interface EntityQueryModel.SelectAttributes
Manages the attributes to include when querying.
-
Method Summary
Modifier and TypeMethodDescriptionexcluded()
Returns theValueSet
controlling which attributes are excluded when querying entities.Collection
<Attribute<?>> get()
Provides the attributes to include when querying based onincluded()
andexcluded()
.included()
Returns theValueSet
controlling which attributes are included when querying entities.
-
Method Details
-
included
Returns theValueSet
controlling which attributes are included when querying entities. Note that an emptyValueSet
indicates that the default select attributes should be used.- Returns:
- the
ValueSet
controlling the included attributes
-
excluded
Returns theValueSet
controlling which attributes are excluded when querying entities.- Returns:
- the
ValueSet
controlling the excluded attributes
-
get
Collection<Attribute<?>> get()Provides the attributes to include when querying based on
included()
andexcluded()
.An empty result indicates that all attributes should be included.
- Returns:
- the attributes to include, taking into account
included()
andexcluded()
-