Interface IAttributeScore

All Known Implementing Classes:
AttributeScore

public interface IAttributeScore
This interface defines a detailed match result for a single attribute. Along with the actual match result, this interface also defines functions that may be used to retrieve the match settings that were used when matching the attribute.
Since:
6.2
Author:
O. Kerpershoek, F. van der Meer
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the name of the attribute for which the score was calculated.
    This method returns the name of the match function that was used to match the attribute.
    int
    This method returns the score of the attribute.
    int
    This method returns the weight of the attribute.
  • Method Details

    • getAttributeName

      String getAttributeName()
      This method returns the name of the attribute for which the score was calculated.
      Returns:
      the name of the attribute for which the score was calculated.
    • getScore

      int getScore()
      This method returns the score of the attribute.
      Returns:
      the score of the attribute.
    • getWeight

      int getWeight()
      This method returns the weight of the attribute.
      Returns:
      the weight of the attribute.
    • getMatchFunction

      String getMatchFunction()
      This method returns the name of the match function that was used to match the attribute.
      Returns:
      the name of the match function that was used to match the attribute.