Interface IMatchScore

All Superinterfaces:
Serializable
All Known Implementing Classes:
MatchScore

public interface IMatchScore extends Serializable
This interface defines the methods of a single matching case from the match result.
Since:
6.2
Author:
O. Kerpershoek, F. van der Meer
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the ID of the case for which this match score was created.
    This method returns the key the result was grouped on.
    int
    This method returns the score of the case.
  • Method Details

    • getId

      String getId()
      This method returns the ID of the case for which this match score was created.
      Returns:
      the ID of the case for which this match score was created.
    • getScore

      int getScore()
      This method returns the score of the case.
      Returns:
      The match score of the case.
    • getKey

      Object getKey()
      This method returns the key the result was grouped on. This method will only return a value if the key-field filtering was enabled.
      Returns:
      The value of the key that was used in the key-field filtering, or null if it isn't available.