Class Filter

java.lang.Object
com.vaadin.hilla.crud.filter.Filter
Direct Known Subclasses:
AndFilter, OrFilter, PropertyStringFilter

public class Filter extends Object
Superclass for all filters to be used with CRUD services. This specific class is never used, instead a filter instance will be one of the following types:
  • AndFilter - Contains a list of nested filters, all of which need to pass.
  • OrFilter - Contains a list of nested filters, of which at least one needs to pass.
  • PropertyStringFilter - Matches a specific property, or nested property path, against a filter value, using a specific operator.
  • Constructor Details

    • Filter

      public Filter()