Class Compare.GreaterOrEqual

  • All Implemented Interfaces:
    Container.Filter, Serializable
    Enclosing class:
    Compare

    @Deprecated
    public static final class Compare.GreaterOrEqual
    extends Compare
    Deprecated.
    As of 8.0, the whole filtering feature is integrated into DataProvider. For in-memory case (ListDataProvider), use predicates as filters. For back-end DataProviders, filters are specific to the implementation.
    A Compare filter that accepts items for which the identified property value is greater than or equal to 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.
    Since:
    6.6
    See Also:
    Serialized Form
    • Constructor Detail

      • GreaterOrEqual

        public GreaterOrEqual​(Object propertyId,
                              Object value)
        Deprecated.
        Construct a filter that accepts items for which the identified property value is greater than or equal to 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.
        Parameters:
        propertyId - the identifier of the property whose value to compare against value, not null
        value - the value to compare against - null values may or may not be supported depending on the container