Class BooleanFilter

java.lang.Object
tech.jhipster.service.filter.Filter<Boolean>
tech.jhipster.service.filter.BooleanFilter
All Implemented Interfaces:
Serializable

public class BooleanFilter extends Filter<Boolean>
Class for filtering attributes with Boolean type. It can be added to a criteria class as a member, to support the following query parameters:
      fieldName.equals=true
      fieldName.notEquals=true
      fieldName.specified=true
      fieldName.specified=false
      fieldName.in=true,false
      fieldName.notIn=true,false
 
See Also:
  • Constructor Details

    • BooleanFilter

      public BooleanFilter()

      Constructor for BooleanFilter.

    • BooleanFilter

      public BooleanFilter(BooleanFilter filter)

      Constructor for BooleanFilter.

      Parameters:
      filter - a BooleanFilter object.
  • Method Details