DataProvider.
For in-memory case (ListDataProvider), use predicates as filters. For back-end DataProviders,
filters are specific to the implementation.@Deprecated public static final class Compare.Greater extends Compare
Compare filter that accepts items for which the identified
property value is greater than value.
For in-memory filters, the values must implement Comparable and
Comparable.compareTo(Object) is used for the comparison. For
other containers, the comparison implementation is container dependent
and may use e.g. database comparison operations.Compare.Equal, Compare.Greater, Compare.GreaterOrEqual, Compare.Less, Compare.LessOrEqual, Compare.Operation| Constructor and Description |
|---|
Greater(Object propertyId,
Object value)
Deprecated.
Construct a filter that accepts items for which the identified
property value is greater than
value. |
appliesToProperty, compareValue, equals, getOperation, getPropertyId, getValue, hashCode, passesFilterpublic Greater(Object propertyId, Object value)
value.
For in-memory filters, the values must implement Comparable
and Comparable.compareTo(Object) is used for the comparison.
For other containers, the comparison implementation is container
dependent and may use e.g. database comparison operations.propertyId - the identifier of the property whose value to compare
against value, not nullvalue - the value to compare against - null values may or may not
be supported depending on the containerCopyright © 2019 Vaadin Ltd. All rights reserved.