mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-17 15:35:00 +00:00
fix javadoc warnings related to java.util.Map.Entry
This commit is contained in:
parent
e736f41062
commit
b75d948dab
@ -298,7 +298,7 @@ public interface MultiValuedMap<K, V> {
|
|||||||
* Changes to the returned map or the collections that serve as its values
|
* Changes to the returned map or the collections that serve as its values
|
||||||
* will update the underlying multi-valued map, and vice versa. The map does
|
* will update the underlying multi-valued map, and vice versa. The map does
|
||||||
* not support {@code put} or {@code putAll}, nor do its entries support
|
* not support {@code put} or {@code putAll}, nor do its entries support
|
||||||
* {@link Map.Entry#setValue setValue}.
|
* {@link java.util.Map.Entry#setValue(Object) setValue}.
|
||||||
*
|
*
|
||||||
* @return a map view of the mappings in this multi-valued map
|
* @return a map view of the mappings in this multi-valued map
|
||||||
*/
|
*/
|
||||||
|
@ -260,7 +260,7 @@ abstract class AbstractPatriciaTrie<K, V> extends AbstractBitwiseTrie<K, V> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the {@link Entry} whose key is closest in a bitwise XOR
|
* Returns the {@link java.util.Map.Entry} whose key is closest in a bitwise XOR
|
||||||
* metric to the given key. This is NOT lexicographic closeness.
|
* metric to the given key. This is NOT lexicographic closeness.
|
||||||
* For example, given the keys:
|
* For example, given the keys:
|
||||||
*
|
*
|
||||||
@ -275,7 +275,7 @@ abstract class AbstractPatriciaTrie<K, V> extends AbstractBitwiseTrie<K, V> {
|
|||||||
* than the XOR distance between D & H.
|
* than the XOR distance between D & H.
|
||||||
*
|
*
|
||||||
* @param key the key to use in the search
|
* @param key the key to use in the search
|
||||||
* @return the {@link Entry} whose key is closest in a bitwise XOR metric
|
* @return the {@link java.util.Map.Entry} whose key is closest in a bitwise XOR metric
|
||||||
* to the provided key
|
* to the provided key
|
||||||
*/
|
*/
|
||||||
public Map.Entry<K, V> select(final K key) {
|
public Map.Entry<K, V> select(final K key) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user