Class FilterCondition

java.lang.Object
com.aquima.interactions.process.search.FilterCondition

public class FilterCondition extends Object
This class may be used to represent a condition on a query.
Since:
9.1
Author:
A.Pragt
  • Constructor Details

    • FilterCondition

      public FilterCondition(IValue value, ConditionOperator operator)
      Constructs a new condition.
      Parameters:
      value - The value to check, may be null.
      operator - The operator to use, not null.
    • FilterCondition

      public FilterCondition(IValue value, ConditionOperator operator, MatchMode matchMode)
      Constructs a new condition.
      Parameters:
      value - The value to check, may be null.
      operator - The operator to use, not null.
      matchMode - the match mode used with LIKE conditions
  • Method Details

    • getValue

      public IValue getValue()
      This method returns the value to check aqainst.
      Returns:
      The value to compare the value with, may be null.
    • getOperator

      public ConditionOperator getOperator()
      This method returns the operator to use.
      Returns:
      The operator, never null.
    • getMatchMode

      public MatchMode getMatchMode()
      Returns:
      the match mode used in LIKE conditions