public static class FilterFactory.DefaultImpls
Used by filter components (such as NumberInterval) to create actual filter objects. The filters are expected to have properly implemented Any.equals, Any.hashCode and Any.toString, to allow for filter expression simplification (e.g. to remove non-unique filters from AND or OR expressions).
The filter objects produced by this factory will be passed into Vaadin's DataProvider in the Query object.
| Modifier and Type | Method and Description |
|---|---|
static F |
between(FilterFactory<F> $this,
java.lang.String propertyName,
java.lang.Object min,
java.lang.Object max)
Creates a filter which accepts only such values of given propertyName which are greater than or equal to given min and less than or equal to given max.
|
public static F between(FilterFactory<F> $this, java.lang.String propertyName, java.lang.Object min, java.lang.Object max)
Creates a filter which accepts only such values of given propertyName which are greater than or equal to given min and less than or equal to given max.