Class AndFilter

java.lang.Object
com.vaadin.hilla.crud.filter.Filter
com.vaadin.hilla.crud.filter.AndFilter

public class AndFilter extends Filter
A filter that requires all children to pass.

Custom filter implementations need to handle this filter by running all child filters and verifying that all of them pass.

  • Constructor Details

    • AndFilter

      public AndFilter()
      Create an empty filter.
    • AndFilter

      public AndFilter(Filter... children)
      Create a filter with the given children.
      Parameters:
      children - the children of the filter
  • Method Details