Modifier and Type | Class and Description |
---|---|
static class |
ConcurrentRadixTree.KeyValuePairImpl<O>
Implementation of the
KeyValuePair interface. |
Modifier and Type | Method and Description |
---|---|
Iterable<KeyValuePair<O>> |
RadixTree.getKeyValuePairsForClosestKeys(CharSequence candidate)
Returns a lazy iterable which returns the set of
KeyValuePair s 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
KeyValuePair s 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
KeyValuePair s 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
KeyValuePair s for keys and their associated values
in the tree, where the keys start with the given prefix. |
Modifier and Type | Method and Description |
---|---|
KeyValuePair<O> |
InvertedRadixTree.getKeyValuePairForLongestKeyPrefixing(CharSequence document)
Returns the
KeyValuePair for the longest key in the tree which is a prefix of the given document. |
KeyValuePair<O> |
ConcurrentInvertedRadixTree.getKeyValuePairForLongestKeyPrefixing(CharSequence document)
Returns the
KeyValuePair for the longest key in the tree which is a prefix of the given document. |
Modifier and Type | Method and Description |
---|---|
Iterable<KeyValuePair<O>> |
ConcurrentInvertedRadixTree.getKeyValuePairsForClosestKeys(CharSequence candidate)
Returns a lazy iterable which returns the set of
KeyValuePair s 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
KeyValuePair s 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
KeyValuePair s 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
KeyValuePair s 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
KeyValuePair s 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
KeyValuePair s for keys and their associated values
in the tree, where the keys start with the given prefix. |
Modifier and Type | Method and Description |
---|---|
Iterable<KeyValuePair<O>> |
ReversedRadixTree.getKeyValuePairsForKeysEndingWith(CharSequence suffix)
Returns a lazy iterable which returns the set of
KeyValuePair s 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
KeyValuePair s for keys and their associated values
in the tree, where the keys end with the given suffix. |
Modifier and Type | Method and Description |
---|---|
Iterable<KeyValuePair<O>> |
SuffixTree.getKeyValuePairsForKeysContaining(CharSequence fragment)
Returns a lazy iterable which returns the set of
KeyValuePair s 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
KeyValuePair s 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
KeyValuePair s 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
KeyValuePair s for keys and their associated values in
the tree, where the keys end with the given suffix. |
Copyright © 2018. All rights reserved.