/// <summary>The set pattern map.</summary>
 /// <param name="values">The values.</param>
 public void SetPatternMap(IDictionary <string, T> values)
 {
     this.values = new PatternMatcher <T>(values);
 }
 /// <summary>Initializes a new instance of the <see cref="PatternMatchingClassifier{T}"/> class.</summary>
 /// <param name="values">The values.</param>
 public PatternMatchingClassifier(IDictionary <string, T> values)
 {
     this.values = new PatternMatcher <T>(values);
 }