Uses of Interface
com.googlecode.concurrenttrees.common.KeyValuePair

Packages that use KeyValuePair
com.googlecode.concurrenttrees.radix   
com.googlecode.concurrenttrees.radixinverted   
com.googlecode.concurrenttrees.radixreversed   
com.googlecode.concurrenttrees.suffix   
 

Uses of KeyValuePair in com.googlecode.concurrenttrees.radix
 

Classes in com.googlecode.concurrenttrees.radix that implement KeyValuePair
static class ConcurrentRadixTree.KeyValuePairImpl<O>
          Implementation of the KeyValuePair interface.
 

Methods in com.googlecode.concurrenttrees.radix that return types with arguments of type KeyValuePair
 Iterable<KeyValuePair<O>> RadixTree.getKeyValuePairsForClosestKeys(CharSequence candidate)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree which are the closest match for the given candidate key.
 Iterable<KeyValuePair<O>> ConcurrentRadixTree.getKeyValuePairsForClosestKeys(CharSequence candidate)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree which are the closest match for the given candidate key.
 Iterable<KeyValuePair<O>> RadixTree.getKeyValuePairsForKeysStartingWith(CharSequence prefix)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree, where the keys start with the given prefix.
 Iterable<KeyValuePair<O>> ConcurrentRadixTree.getKeyValuePairsForKeysStartingWith(CharSequence prefix)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree, where the keys start with the given prefix.
 

Uses of KeyValuePair in com.googlecode.concurrenttrees.radixinverted
 

Methods in com.googlecode.concurrenttrees.radixinverted that return types with arguments of type KeyValuePair
 Iterable<KeyValuePair<O>> ConcurrentInvertedRadixTree.getKeyValuePairsForClosestKeys(CharSequence candidate)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree which are the closest match for the given candidate key.
 Iterable<KeyValuePair<O>> InvertedRadixTree.getKeyValuePairsForKeysContainedIn(CharSequence document)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys in the tree which are contained in the given document.
 Iterable<KeyValuePair<O>> ConcurrentInvertedRadixTree.getKeyValuePairsForKeysContainedIn(CharSequence document)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys in the tree which are contained in the given document.
 Iterable<KeyValuePair<O>> InvertedRadixTree.getKeyValuePairsForKeysPrefixing(CharSequence document)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys in the tree which prefix the given document.
 Iterable<KeyValuePair<O>> ConcurrentInvertedRadixTree.getKeyValuePairsForKeysPrefixing(CharSequence document)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys in the tree which prefix the given document.
 Iterable<KeyValuePair<O>> ConcurrentInvertedRadixTree.getKeyValuePairsForKeysStartingWith(CharSequence prefix)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree, where the keys start with the given prefix.
 

Uses of KeyValuePair in com.googlecode.concurrenttrees.radixreversed
 

Methods in com.googlecode.concurrenttrees.radixreversed that return types with arguments of type KeyValuePair
 Iterable<KeyValuePair<O>> ReversedRadixTree.getKeyValuePairsForKeysEndingWith(CharSequence suffix)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree, where the keys end with the given suffix.
 Iterable<KeyValuePair<O>> ConcurrentReversedRadixTree.getKeyValuePairsForKeysEndingWith(CharSequence suffix)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree, where the keys end with the given suffix.
 

Uses of KeyValuePair in com.googlecode.concurrenttrees.suffix
 

Methods in com.googlecode.concurrenttrees.suffix that return types with arguments of type KeyValuePair
 Iterable<KeyValuePair<O>> SuffixTree.getKeyValuePairsForKeysContaining(CharSequence fragment)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree, where the keys contain the given fragment.
 Iterable<KeyValuePair<O>> ConcurrentSuffixTree.getKeyValuePairsForKeysContaining(CharSequence fragment)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree, where the keys contain the given fragment.
 Iterable<KeyValuePair<O>> SuffixTree.getKeyValuePairsForKeysEndingWith(CharSequence suffix)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree, where the keys end with the given suffix.
 Iterable<KeyValuePair<O>> ConcurrentSuffixTree.getKeyValuePairsForKeysEndingWith(CharSequence suffix)
          Returns a lazy iterable which returns the set of KeyValuePairs for keys and their associated values in the tree, where the keys end with the given suffix.
 



Copyright © 2013. All Rights Reserved.