Interface IInstanceMatchCondition

All Superinterfaces:
Serializable
All Known Implementing Classes:
InstanceMatchCondition

public interface IInstanceMatchCondition extends Serializable
Interface describing a match condition. The implementation of this interface determines if two instances match.
Since:
7.1
Author:
Jon van Leuven
  • Method Details

    • getSourceExpression

      IExpression getSourceExpression()
      This method returns the expression that should be evaluated on the source profile. The result of the expression will be compared against the result of the target expression.
      Returns:
      the expression that should be evaluated on the source profile.
    • getTargetExpression

      IExpression getTargetExpression()
      This method returns the expression that should be evaluated on the target profile. The result of the expression will be compared against the result of the source expression.
      Returns:
      the expression that should be evaluated on the target profile.
    • getOperator

      MatchConditionOperator getOperator()
      This method returns the operator that should be used to compare the two values with.
      Returns:
      the operator that should be used to compare the two values with.