Interface EntityQueryModel.SelectAttributes

Enclosing interface:
EntityQueryModel

public static interface EntityQueryModel.SelectAttributes
Manages the attributes to include when querying.
  • Method Details

    • included

      ValueSet<Attribute<?>> included()
      Returns the ValueSet controlling which attributes are included when querying entities. Note that an empty ValueSet indicates that the default select attributes should be used.
      Returns:
      the ValueSet controlling the included attributes
    • excluded

      ValueSet<Attribute<?>> excluded()
      Returns the ValueSet controlling which attributes are excluded when querying entities.
      Returns:
      the ValueSet controlling the excluded attributes
    • get

      Provides the attributes to include when querying based on included() and excluded().

      An empty result indicates that all attributes should be included.

      Returns:
      the attributes to include, taking into account included() and excluded()