Interface IDfValueRangeAttrExpression

All Superinterfaces:
IDfAttrExpression, IDfExpression

public interface IDfValueRangeAttrExpression extends IDfAttrExpression
Defines a search expression that requires the attribute value to be greater than a minimum value and less than a maximum value (or equal).
See Also:
  • Field Details

    • SEARCH_OP_BETWEEN

      static final int SEARCH_OP_BETWEEN
      Search operation code: between a minimum and maximum value (included).
      See Also:
  • Method Details

    • getFromValue

      String getFromValue()
      Gets the minimum value of the range (included).
      Returns:
      The minimum value of the range.
    • getToValue

      String getToValue()
      Gets the maximum value of the range (included).
      Returns:
      The maximum value of the range.