Interface EntityTableConditionModel<C extends Attribute<?>>

All Superinterfaces:
TableConditionModel<C>

public interface EntityTableConditionModel<C extends Attribute<?>> extends TableConditionModel<C>
This interface defines filtering functionality, which refers to showing/hiding entities already available in a table model and searching functionality, which refers to configuring the underlying query, which then needs to be re-run.
Factory for EntityTableConditionModel instances via entityTableConditionModel(EntityType, EntityConnectionProvider, ColumnConditionModel.Factory)
  • Method Details

    • entityType

      EntityType entityType()
      Returns:
      the type of the entity this table condition model is based on
    • setEqualConditionValues

      <T> boolean setEqualConditionValues(Attribute<T> attribute, Collection<T> values)
      Sets the search condition values of the condition model associated with attribute. Enables the condition model in case values is non-empty or disables it if values is empty.
      Type Parameters:
      T - the value type
      Parameters:
      attribute - the attribute
      values - the search condition values, an empty Collection for none
      Returns:
      true if the search state changed as a result of this method call, false otherwise
    • where

      Condition where(Conjunction conjunction)
      Returns a WHERE condition based on enabled condition models which are based on non-aggregate function columns.
      Parameters:
      conjunction - the conjunction to use in case of multiple enabled conditions
      Returns:
      the current where condition based on the state of the underlying condition models
    • having

      Condition having(Conjunction conjunction)
      Returns a HAVING condition based on enabled condition models which are based on aggregate function columns.
      Parameters:
      conjunction - the conjunction to use in case of multiple enabled conditions
      Returns:
      the current having condition based on the state of the underlying condition models
    • additionalWhere

      Value<Supplier<Condition>> additionalWhere()
      Controls the additional where condition. The condition supplier may return null in case of no condition.
      Returns:
      the value controlling the additional where condition
    • additionalHaving

      Value<Supplier<Condition>> additionalHaving()
      Controls the additional having condition. The condition supplier may return null in case of no condition.
      Returns:
      the value controlling the additional having condition
    • attributeModel

      <A extends Attribute<T>, T> ColumnConditionModel<A,T> attributeModel(A attribute)
      Returns the ColumnConditionModel associated with the given attribute.
      Type Parameters:
      A - the attribute type
      T - the column value type
      Parameters:
      attribute - the attribute for which to retrieve the ColumnConditionModel
      Returns:
      the ColumnConditionModel associated with attribute
      Throws:
      IllegalArgumentException - in case no condition model exists for the given attribute
    • entityTableConditionModel

      static EntityTableConditionModel<Attribute<?>> entityTableConditionModel(EntityType entityType, EntityConnectionProvider connectionProvider)
      Parameters:
      entityType - the underlying entity type
      connectionProvider - a EntityConnectionProvider instance
      Returns:
      a new EntityTableConditionModel instance
    • entityTableConditionModel

      static EntityTableConditionModel<Attribute<?>> entityTableConditionModel(EntityType entityType, EntityConnectionProvider connectionProvider, ColumnConditionModel.Factory<Attribute<?>> conditionModelFactory)
      Parameters:
      entityType - the underlying entity type
      connectionProvider - a EntityConnectionProvider instance
      conditionModelFactory - provides the column condition models for this table condition model
      Returns:
      a new EntityTableConditionModel instance