Class MatchedChoicesIndex<T extends Choice>

java.lang.Object
oracle.rules.sdk2.dictionary.MatchedChoicesIndex<T>

public class MatchedChoicesIndex<T extends Choice> extends Object
Since:
12.1.2.0.0
Author:
gopandey
  • Constructor Details

    • MatchedChoicesIndex

      public MatchedChoicesIndex()
  • Method Details

    • clear

      public void clear()
    • getMatches

      public List<T> getMatches(String str)
    • getLongestSubstringMatches

      public List<T> getLongestSubstringMatches(String pattern)
      Gets the matching Choices for the longest substring of the given pattern
      Parameters:
      pattern - Pattern
      Returns:
      Choices for the longest substring, if any. Else returns an empty List.
    • getLeastResultSubstringMatches

      public List<T> getLeastResultSubstringMatches(String pattern)
      Gets the smallest set of matching Choices across all of the pattern's sub-strings
      Parameters:
      pattern - Pattern
      Returns:
      Smallest set of matching substring choices, if any. Else returns an empty List.
    • getLeastResultSubstringMatchEntry

      public Map.Entry<String,List<T>> getLeastResultSubstringMatchEntry(String pattern)
    • addMatches

      public void addMatches(String str, List<T> items)
    • contains

      public boolean contains(String pattern)