Interface NumericFilter

All Superinterfaces:
HasToRequest<NumericFilterRequest>, Serializable

public interface NumericFilter extends HasToRequest<NumericFilterRequest>, Serializable
Represents a filter for numeric values. Only one property can be specified: in, lt, lte, gt or gte. minProperties = 1, maxProperties = 1.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the greater than value.
    Returns the greater than or equal value.
    Returns the list of values to match (in).
    Returns the less than value.
    Returns the less than or equal value.

    Methods inherited from interface HasToRequest

    toRequest
  • Method Details

    • getIn

      List<Double> getIn()
      Returns the list of values to match (in).
      Returns:
      the list of values to match, or null if not specified
    • getGt

      Double getGt()
      Returns the greater than value.
      Returns:
      the greater than value, or null if not specified
    • getGte

      Double getGte()
      Returns the greater than or equal value.
      Returns:
      the greater than or equal value, or null if not specified
    • getLt

      Double getLt()
      Returns the less than value.
      Returns:
      the less than value, or null if not specified
    • getLte

      Double getLte()
      Returns the less than or equal value.
      Returns:
      the less than or equal value, or null if not specified