Javadoc: Add missing @param tags for generics.
This commit is contained in:
parent
8e09f5f538
commit
5d756cebd7
|
@ -28,6 +28,7 @@ import java.util.Collection;
|
|||
* @see CollectionUtils#isFull
|
||||
* @see CollectionUtils#maxSize
|
||||
*
|
||||
* @param <E> the type of elements in this collection
|
||||
* @since 3.0
|
||||
*/
|
||||
public interface BoundedCollection<E> extends Collection<E> {
|
||||
|
|
|
@ -23,6 +23,8 @@ package org.apache.commons.collections4;
|
|||
* maximum number of elements. This interface allows the querying of details
|
||||
* associated with the maximum number of elements.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public interface BoundedMap<K, V> extends IterableMap<K, V> {
|
||||
|
|
|
@ -33,10 +33,11 @@ import java.util.Map;
|
|||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @param <K> the type of the keys in the map
|
||||
* @param <V> the type of the values in the map
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public interface IterableMap<K, V> extends Map<K, V>, Put<K, V>, IterableGet<K, V> {
|
||||
// empty
|
||||
}
|
||||
|
|
|
@ -39,6 +39,9 @@ import java.util.Collection;
|
|||
* These were added solely for documentation purposes and do not change the interface
|
||||
* as they were defined in the superinterface <code>Map</code> anyway.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
*
|
||||
* @since 2.0
|
||||
* @deprecated since 4.1, use {@link MultiValuedMap} instead
|
||||
*/
|
||||
|
|
|
@ -22,6 +22,8 @@ import java.util.SortedMap;
|
|||
* Defines the interface for a prefix tree, an ordered tree data structure. For
|
||||
* more information, see <a href="http://en.wikipedia.org/wiki/Trie">Tries</a>.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 4.0
|
||||
*/
|
||||
public interface Trie<K, V> extends IterableSortedMap<K, V> {
|
||||
|
|
|
@ -34,6 +34,8 @@ import org.apache.commons.collections4.map.AbstractMapDecorator;
|
|||
* it would provide a loophole around the validation.
|
||||
* But, you might want that loophole, so this class is kept simple.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public abstract class AbstractBidiMapDecorator<K, V>
|
||||
|
|
|
@ -31,6 +31,8 @@ import org.apache.commons.collections4.OrderedMapIterator;
|
|||
* it would provide a loophole around the validation.
|
||||
* But, you might want that loophole, so this class is kept simple.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public abstract class AbstractOrderedBidiMapDecorator<K, V>
|
||||
|
|
|
@ -33,6 +33,8 @@ import org.apache.commons.collections4.SortedBidiMap;
|
|||
* it would provide a loophole around the validation.
|
||||
* But, you might want that loophole, so this class is kept simple.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public abstract class AbstractSortedBidiMapDecorator<K, V>
|
||||
|
|
|
@ -49,6 +49,8 @@ import org.apache.commons.collections4.map.AbstractSortedMapDecorator;
|
|||
* NOTE: From Commons Collections 3.1, all subclasses will use {@link TreeMap}
|
||||
* and the flawed <code>createMap</code> method is ignored.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class DualTreeBidiMap<K, V> extends AbstractDualBidiMap<K, V>
|
||||
|
|
|
@ -72,6 +72,9 @@ import org.apache.commons.collections4.keyvalue.UnmodifiableMapEntry;
|
|||
* not allow setValue() and will throw an
|
||||
* UnsupportedOperationException on attempts to call that method.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
*
|
||||
* @since 3.0 (previously DoubleOrderedMap v2.0)
|
||||
*/
|
||||
public class TreeBidiMap<K extends Comparable<K>, V extends Comparable<V>>
|
||||
|
|
|
@ -31,6 +31,8 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
|||
* <p>
|
||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public final class UnmodifiableBidiMap<K, V>
|
||||
|
|
|
@ -31,6 +31,8 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
|||
* <p>
|
||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public final class UnmodifiableOrderedBidiMap<K, V>
|
||||
|
|
|
@ -33,6 +33,8 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
|||
* <p>
|
||||
* Attempts to modify it will result in an {@link UnsupportedOperationException}.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public final class UnmodifiableSortedBidiMap<K, V>
|
||||
|
|
|
@ -37,6 +37,7 @@ import org.apache.commons.collections4.iterators.UnmodifiableIterator;
|
|||
* <p>
|
||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||
*
|
||||
* @param <E> the type of elements in this collection
|
||||
* @since 3.0
|
||||
*/
|
||||
public final class UnmodifiableBoundedCollection<E> extends AbstractCollectionDecorator<E>
|
||||
|
|
|
@ -33,6 +33,7 @@ import org.apache.commons.collections4.iterators.UnmodifiableIterator;
|
|||
* <p>
|
||||
* This class is Serializable from Commons Collections 3.1.
|
||||
*
|
||||
* @param <E> the type of elements in this collection
|
||||
* @since 3.0
|
||||
*/
|
||||
public class FixedSizeList<E>
|
||||
|
|
|
@ -52,6 +52,8 @@ import org.apache.commons.collections4.iterators.EmptyMapIterator;
|
|||
* This is to provide backwards compatibility for ReferenceMap between v3.0 and v3.1.
|
||||
* This extends clause will be removed in v5.0.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class AbstractHashedMap<K, V> extends AbstractMap<K, V> implements IterableMap<K, V> {
|
||||
|
|
|
@ -22,6 +22,8 @@ import org.apache.commons.collections4.MapIterator;
|
|||
/**
|
||||
* Provide a basic {@link IterableMap} implementation.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 4.0
|
||||
*/
|
||||
public abstract class AbstractIterableMap<K, V> implements IterableMap<K, V> {
|
||||
|
|
|
@ -56,6 +56,8 @@ import org.apache.commons.collections4.iterators.EmptyOrderedMapIterator;
|
|||
* The implementation is also designed to be subclassed, with lots of useful
|
||||
* methods exposed.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public abstract class AbstractLinkedMap<K, V> extends AbstractHashedMap<K, V> implements OrderedMap<K, V> {
|
||||
|
|
|
@ -31,6 +31,8 @@ import org.apache.commons.collections4.OrderedMapIterator;
|
|||
* it would provide a loophole around the validation.
|
||||
* But, you might want that loophole, so this class is kept simple.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public abstract class AbstractOrderedMapDecorator<K, V> extends AbstractMapDecorator<K, V>
|
||||
|
|
|
@ -75,6 +75,9 @@ import org.apache.commons.collections4.keyvalue.DefaultMapEntry;
|
|||
* You can use {@link java.util.Collections#synchronizedMap} to
|
||||
* provide synchronized access to a <code>ReferenceMap</code>.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
*
|
||||
* @see java.lang.ref.Reference
|
||||
* @since 3.1 (extracted from ReferenceMap in 3.0)
|
||||
*/
|
||||
|
|
|
@ -59,6 +59,8 @@ import java.util.Map;
|
|||
* exceptions when accessed by concurrent threads without synchronization.
|
||||
* </p>
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class CaseInsensitiveMap<K, V> extends AbstractHashedMap<K, V> implements Serializable, Cloneable {
|
||||
|
|
|
@ -39,6 +39,8 @@ import org.apache.commons.collections4.collection.CompositeCollection;
|
|||
* using {@link java.util.Collections#synchronizedMap(Map)}. This class may throw
|
||||
* exceptions when accessed by concurrent threads without synchronization.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class CompositeMap<K, V> extends AbstractIterableMap<K, V> implements Serializable {
|
||||
|
|
|
@ -56,8 +56,10 @@ import org.apache.commons.collections4.functors.FactoryTransformer;
|
|||
* using {@link java.util.Collections#synchronizedMap(Map)}. This class may throw
|
||||
* exceptions when accessed by concurrent threads without synchronization.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
*
|
||||
* @since 3.2
|
||||
*
|
||||
* @see LazyMap
|
||||
*/
|
||||
public class DefaultedMap<K, V> extends AbstractMapDecorator<K, V> implements Serializable {
|
||||
|
|
|
@ -49,6 +49,8 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
|||
* <p>
|
||||
* This class is Serializable from Commons Collections 3.1.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class FixedSizeMap<K, V>
|
||||
|
|
|
@ -51,6 +51,8 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
|||
* <p>
|
||||
* This class is Serializable from Commons Collections 3.1.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class FixedSizeSortedMap<K, V>
|
||||
|
|
|
@ -67,6 +67,8 @@ import org.apache.commons.collections4.iterators.EmptyMapIterator;
|
|||
* using {@link java.util.Collections#synchronizedMap(Map)}. This class may throw
|
||||
* exceptions when accessed by concurrent threads without synchronization.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class Flat3Map<K, V> implements IterableMap<K, V>, Serializable, Cloneable {
|
||||
|
|
|
@ -36,6 +36,8 @@ import java.util.Map;
|
|||
* using {@link java.util.Collections#synchronizedMap(Map)}. This class may throw
|
||||
* exceptions when accessed by concurrent threads without synchronization.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class HashedMap<K, V>
|
||||
|
|
|
@ -54,6 +54,8 @@ import org.apache.commons.collections4.BoundedMap;
|
|||
* using {@link java.util.Collections#synchronizedMap(Map)}. This class may throw
|
||||
* <code>NullPointerException</code>'s when accessed by concurrent threads.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0 (previously in main package v1.0)
|
||||
*/
|
||||
public class LRUMap<K, V>
|
||||
|
|
|
@ -56,6 +56,8 @@ import org.apache.commons.collections4.functors.FactoryTransformer;
|
|||
* <p>
|
||||
* This class is Serializable from Commons Collections 3.1.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class LazyMap<K, V> extends AbstractMapDecorator<K, V> implements Serializable {
|
||||
|
|
|
@ -53,6 +53,8 @@ import org.apache.commons.collections4.Transformer;
|
|||
* <p>
|
||||
* This class is Serializable from Commons Collections 3.1.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class LazySortedMap<K,V> extends LazyMap<K,V> implements SortedMap<K,V> {
|
||||
|
|
|
@ -57,6 +57,8 @@ import org.apache.commons.collections4.list.UnmodifiableList;
|
|||
* using {@link java.util.Collections#synchronizedMap(Map)}. This class may throw
|
||||
* exceptions when accessed by concurrent threads without synchronization.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class LinkedMap<K, V> extends AbstractLinkedMap<K, V> implements Serializable, Cloneable {
|
||||
|
|
|
@ -72,6 +72,8 @@ import org.apache.commons.collections4.list.UnmodifiableList;
|
|||
* <p>
|
||||
* This class is {@link Serializable} starting with Commons Collections 3.1.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class ListOrderedMap<K, V>
|
||||
|
|
|
@ -71,6 +71,8 @@ import org.apache.commons.collections4.keyvalue.MultiKey;
|
|||
* appropriate synchronization. This class may throw exceptions when accessed
|
||||
* by concurrent threads without synchronization.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.1
|
||||
*/
|
||||
public class MultiKeyMap<K, V> extends AbstractMapDecorator<MultiKey<? extends K>, V>
|
||||
|
|
|
@ -59,6 +59,8 @@ import org.apache.commons.collections4.iterators.TransformIterator;
|
|||
* appropriate synchronization. This class may throw exceptions when accessed
|
||||
* by concurrent threads without synchronization.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.2
|
||||
* @deprecated since 4.1, use {@link org.apache.commons.collections4.MultiValuedMap MultiValuedMap} instead
|
||||
*/
|
||||
|
|
|
@ -55,8 +55,8 @@ import java.util.concurrent.TimeUnit;
|
|||
* synchronization.
|
||||
* </p>
|
||||
*
|
||||
* @param <K> the type of the keys in the map
|
||||
* @param <V> the type of the values in the map
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 4.0
|
||||
*/
|
||||
public class PassiveExpiringMap<K, V>
|
||||
|
|
|
@ -44,6 +44,8 @@ import org.apache.commons.collections4.Predicate;
|
|||
* <p>
|
||||
* This class is Serializable from Commons Collections 3.1.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class PredicatedMap<K, V>
|
||||
|
|
|
@ -45,6 +45,8 @@ import org.apache.commons.collections4.Predicate;
|
|||
* <p>
|
||||
* This class is Serializable from Commons Collections 3.1.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class PredicatedSortedMap<K, V> extends PredicatedMap<K, V> implements SortedMap<K, V> {
|
||||
|
|
|
@ -70,8 +70,10 @@ import java.lang.ref.Reference;
|
|||
* exceptions when accessed by concurrent threads without synchronization.
|
||||
* </p>
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
*
|
||||
* @see java.lang.ref.Reference
|
||||
*
|
||||
* @since 3.0 (previously in main package v2.1)
|
||||
*/
|
||||
public class ReferenceIdentityMap<K, V> extends AbstractReferenceMap<K, V> implements Serializable {
|
||||
|
|
|
@ -53,6 +53,8 @@ import org.apache.commons.collections4.keyvalue.TiedMapEntry;
|
|||
* <li>the <code>KeyValue</code> interface (just cast - no object creation)
|
||||
* </ul>
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.1
|
||||
*/
|
||||
public class SingletonMap<K, V>
|
||||
|
|
|
@ -90,6 +90,8 @@ import org.apache.commons.collections4.KeyValue;
|
|||
* iterations, or if you can make your own guarantees about how bulk
|
||||
* operations will affect the map.<p>
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0 (previously in main package v2.1)
|
||||
*/
|
||||
public final class StaticBucketMap<K, V> extends AbstractIterableMap<K, V> {
|
||||
|
|
|
@ -40,8 +40,11 @@ import org.apache.commons.collections4.Transformer;
|
|||
* <p>
|
||||
* This class is Serializable from Commons Collections 3.1.
|
||||
* <p>
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
*
|
||||
* @see org.apache.commons.collections4.splitmap.TransformedSplitMap
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public class TransformedMap<K, V>
|
||||
|
|
|
@ -38,6 +38,8 @@ import org.apache.commons.collections4.Transformer;
|
|||
* <p>
|
||||
* This class is Serializable from Commons Collections 3.1.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class TransformedSortedMap<K, V>
|
||||
|
|
|
@ -39,6 +39,8 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
|||
* <p>
|
||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public final class UnmodifiableMap<K, V>
|
||||
|
|
|
@ -38,6 +38,8 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
|||
* <p>
|
||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public final class UnmodifiableOrderedMap<K, V> extends AbstractOrderedMapDecorator<K, V> implements
|
||||
|
|
|
@ -37,6 +37,8 @@ import org.apache.commons.collections4.set.UnmodifiableSet;
|
|||
* <p>
|
||||
* Attempts to modify it will result in an UnsupportedOperationException.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public final class UnmodifiableSortedMap<K, V>
|
||||
|
|
|
@ -43,6 +43,7 @@ import org.apache.commons.collections4.BoundedCollection;
|
|||
* <p>
|
||||
* This queue prevents null objects from being added.
|
||||
*
|
||||
* @param <E> the type of elements in this collection
|
||||
* @since 4.0
|
||||
*/
|
||||
public class CircularFifoQueue<E> extends AbstractCollection<E>
|
||||
|
|
|
@ -27,6 +27,8 @@ import org.apache.commons.collections4.Trie;
|
|||
* This class provides some basic {@link Trie} functionality and
|
||||
* utility methods for actual bitwise {@link Trie} implementations.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 4.0
|
||||
*/
|
||||
public abstract class AbstractBitwiseTrie<K, V> extends AbstractMap<K, V>
|
||||
|
|
|
@ -51,6 +51,8 @@ import org.apache.commons.collections4.trie.analyzer.StringKeyAnalyzer;
|
|||
* length & fixed length keys. Some methods, such as {@link #prefixMap(Object)}
|
||||
* are suited only to variable length keys.
|
||||
*
|
||||
* @param <E> the type of the values in this map
|
||||
*
|
||||
* @see <a href="http://en.wikipedia.org/wiki/Radix_tree">Radix Tree</a>
|
||||
* @see <a href="http://www.csse.monash.edu.au/~lloyd/tildeAlgDS/Tree/PATRICIA">PATRICIA</a>
|
||||
* @see <a href="http://www.imperialviolet.org/binary/critbit.pdf">Crit-Bit Tree</a>
|
||||
|
|
|
@ -32,6 +32,8 @@ import org.apache.commons.collections4.iterators.UnmodifiableOrderedMapIterator;
|
|||
/**
|
||||
* An unmodifiable {@link Trie}.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 4.0
|
||||
*/
|
||||
public class UnmodifiableTrie<K, V> implements Trie<K, V>, Serializable, Unmodifiable {
|
||||
|
|
|
@ -24,6 +24,8 @@ import org.apache.commons.collections4.OrderedBidiMap;
|
|||
/**
|
||||
* Test class for AbstractOrderedBidiMapDecorator.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
*/
|
||||
public class AbstractOrderedBidiMapDecoratorTest<K, V>
|
||||
extends AbstractOrderedBidiMapTest<K, V> {
|
||||
|
|
|
@ -40,6 +40,8 @@ import java.util.Map;
|
|||
* From 4.0, this class is replaced by java.util.IdentityHashMap but kept as a
|
||||
* test-class because it is still used by the ReferenceIdentityMapTest.
|
||||
*
|
||||
* @param <K> the type of the keys in this map
|
||||
* @param <V> the type of the values in this map
|
||||
* @since 3.0
|
||||
*/
|
||||
public class IdentityMap<K, V>
|
||||
|
|
Loading…
Reference in New Issue