Interface TextTrieMap.ResultHandler<V>

    • Method Detail

      • handlePrefixMatch

        boolean handlePrefixMatch​(int matchLength,
                                  java.util.Iterator<V> values)
        Handles a prefix key match
        Parameters:
        matchLength - Matched key's length
        values - An iterator of the objects associated with the matched key
        Returns:
        Return true to continue the search in the trie, false to quit.