DateOfBirthMatchAlgorith

public enum DateOfBirthMatchAlgorith : String, Encodable

This can be optionally provided to indicate the specific text matching algorithm that will be used for matching.

  • nm

    NM : Needleman Wunsch

    Declaration

    Swift

    case nm = "NM"
  • lv

    LV : Levenshtein Distance

    Declaration

    Swift

    case lv = "LV"
  • jw

    JW : Jaro Winkler Distance

    Declaration

    Swift

    case jw = "JW"