Update licence and javadoc

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131083 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-05-16 14:24:55 +00:00
parent edc53fb910
commit c16a5e8ea5
3 changed files with 560 additions and 557 deletions

View File

@ -1,9 +1,10 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/DefaultMapBag.java,v 1.7 2003/01/13 23:54:38 rwaldhoff Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/DefaultMapBag.java,v 1.8 2003/05/16 14:24:55 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 1999-2003 The Apache Software Foundation. All rights
* Copyright (c) 2002-2003 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -54,7 +55,6 @@
* <http://www.apache.org/>.
*
*/
package org.apache.commons.collections;
import java.util.ArrayList;
@ -72,22 +72,23 @@ import java.util.Set;
* Subclasses need only to call <code>setMap(Map)</code> in their constructor
* (or invoke the {@link #DefaultMapBag(java.util.Map) Map-constructor})
* specifying a map instance that will be used to store the contents of
* the bag.<P>
*
* the bag.
* <p>
* The map will be used to map bag elements to a number; the number represents
* the number of occurrences of that element in the bag.<P>
* the number of occurrences of that element in the bag.
*
* @since Commons Collections 2.0
* @version $Revision: 1.7 $ $Date: 2003/01/13 23:54:38 $
* @version $Revision: 1.8 $ $Date: 2003/05/16 14:24:55 $
*
* @author Chuck Burdick
* @author <a href="mailto:mas@apache.org">Michael A. Smith</a>
**/
* @author Stephen Colebourne
*/
public abstract class DefaultMapBag implements Bag {
private Map _map = null;
private int _total = 0;
private int _mods = 0;
/**
* No-argument constructor.
* Subclasses should invoke <code>setMap(Map)</code> in
@ -97,9 +98,12 @@ public abstract class DefaultMapBag implements Bag {
}
/**
* @since Commons Collections 2.2
* Constructor that assigns the specified Map as the backing store.
* The map must be empty.
*
* @param map the map to assign
*/
public DefaultMapBag(Map map) {
protected DefaultMapBag(Map map) {
setMap(map);
}
@ -107,24 +111,27 @@ public abstract class DefaultMapBag implements Bag {
* Adds a new element to the bag by incrementing its count in the
* underlying map.
*
* @see Bag#add(Object)
* @param object the object to add
* @return <code>true</code> if the object was not already in the <code>uniqueSet</code>
*/
public boolean add(Object o) {
return add(o, 1);
public boolean add(Object object) {
return add(object, 1);
}
/**
* Adds a new element to the bag by incrementing its count in the map.
*
* @see Bag#add(Object, int)
* @param object the object to search for
* @param nCopies the number of copies to add
* @return <code>true</code> if the object was not already in the <code>uniqueSet</code>
*/
public boolean add(Object o, int i) {
public boolean add(Object object, int nCopies) {
_mods++;
if (i > 0) {
int count = (i + getCount(o));
_map.put(o, new Integer(count));
_total += i;
return (count == i);
if (nCopies > 0) {
int count = (nCopies + getCount(object));
_map.put(object, new Integer(count));
_total += nCopies;
return (count == nCopies);
} else {
return false;
}
@ -133,11 +140,12 @@ public abstract class DefaultMapBag implements Bag {
/**
* Invokes {@link #add(Object)} for each element in the given collection.
*
* @see Bag#addAll(Collection)
* @param coll the collection to add
* @return <code>true</code> if this call changed the bag
*/
public boolean addAll(Collection c) {
public boolean addAll(Collection coll) {
boolean changed = false;
Iterator i = c.iterator();
Iterator i = coll.iterator();
while (i.hasNext()) {
boolean added = add(i.next());
changed = changed || added;
@ -145,7 +153,6 @@ public abstract class DefaultMapBag implements Bag {
return changed;
}
/**
* Clears the bag by clearing the underlying map.
*/
@ -159,28 +166,36 @@ public abstract class DefaultMapBag implements Bag {
* Determines if the bag contains the given element by checking if the
* underlying map contains the element as a key.
*
* @param object the object to search for
* @return true if the bag contains the given element
*/
public boolean contains(Object o) {
return _map.containsKey(o);
public boolean contains(Object object) {
return _map.containsKey(object);
}
public boolean containsAll(Collection c) {
return containsAll(new HashBag(c));
/**
* Determines if the bag contains the given elements.
*
* @param coll the collection to check against
* @return <code>true</code> if the Bag contains all the collection
*/
public boolean containsAll(Collection coll) {
return containsAll(new HashBag(coll));
}
/**
* Returns <code>true</code> if the bag contains all elements in
* the given collection, respecting cardinality.
* @see #containsAll(Collection)
**/
*
* @param other the bag to check against
* @return <code>true</code> if the Bag contains all the collection
*/
public boolean containsAll(Bag other) {
boolean result = true;
Iterator i = other.uniqueSet().iterator();
while (i.hasNext()) {
Object current = i.next();
boolean contains =
getCount(current) >= ((Bag)other).getCount(current);
boolean contains = getCount(current) >= ((Bag) other).getCount(current);
result = result && contains;
}
return result;
@ -191,13 +206,16 @@ public abstract class DefaultMapBag implements Bag {
* of this bag, and contains the same number of occurrences of all the
* same elements.
*
* @param o the object to test for equality
* @param object the object to test for equality
* @return true if that object equals this bag
*/
public boolean equals(Object o) {
return (o == this ||
(o != null && o.getClass().equals(this.getClass()) &&
((DefaultMapBag)o)._map.equals(this._map)));
public boolean equals(Object object) {
if (object == this) {
return true;
}
return (object != null &&
object.getClass().equals(this.getClass()) &&
((DefaultMapBag) object)._map.equals(this._map));
}
/**
@ -257,32 +275,32 @@ public abstract class DefaultMapBag implements Bag {
}
}
public boolean remove (Object o) {
return remove(o, getCount(o));
public boolean remove(Object object) {
return remove(object, getCount(object));
}
public boolean remove (Object o, int i) {
public boolean remove(Object object, int nCopies) {
_mods++;
boolean result = false;
int count = getCount(o);
if (i <= 0) {
int count = getCount(object);
if (nCopies <= 0) {
result = false;
} else if (count > i) {
_map.put(o, new Integer(count - i));
} else if (count > nCopies) {
_map.put(object, new Integer(count - nCopies));
result = true;
_total -= i;
_total -= nCopies;
} else { // count > 0 && count <= i
// need to remove all
result = (_map.remove(o) != null);
result = (_map.remove(object) != null);
_total -= count;
}
return result;
}
public boolean removeAll(Collection c) {
public boolean removeAll(Collection coll) {
boolean result = false;
if (c != null) {
Iterator i = c.iterator();
if (coll != null) {
Iterator i = coll.iterator();
while (i.hasNext()) {
boolean changed = remove(i.next(), 1);
result = result || changed;
@ -295,18 +313,21 @@ public abstract class DefaultMapBag implements Bag {
* Remove any members of the bag that are not in the given
* bag, respecting cardinality.
*
* @param coll the collection to retain
* @return true if this call changed the collection
*/
public boolean retainAll(Collection c) {
return retainAll(new HashBag(c));
public boolean retainAll(Collection coll) {
return retainAll(new HashBag(coll));
}
/**
* Remove any members of the bag that are not in the given
* bag, respecting cardinality.
* @see #retainAll(Collection)
*
* @param other the bag to retain
* @return <code>true</code> if this call changed the collection
**/
*/
public boolean retainAll(Bag other) {
boolean result = false;
Bag excess = new HashBag();
@ -339,22 +360,23 @@ public abstract class DefaultMapBag implements Bag {
/**
* Returns an array of all of this bag's elements.
*
* @param a the array to populate
* @param array the array to populate
* @return an array of all of this bag's elements
*/
public Object[] toArray(Object[] a) {
return extractList().toArray(a);
public Object[] toArray(Object[] array) {
return extractList().toArray(array);
}
/**
* Returns the number of occurrence of the given element in this bag
* by looking up its count in the underlying map.
*
* @see Bag#getCount(Object)
* @param object the object to search for
* @return the number of occurrences of the object, zero if not found
*/
public int getCount(Object o) {
public int getCount(Object object) {
int result = 0;
Integer count = MapUtils.getInteger(_map, o);
Integer count = MapUtils.getInteger(_map, object);
if (count != null) {
result = count.intValue();
}
@ -382,7 +404,9 @@ public abstract class DefaultMapBag implements Bag {
/**
* Actually walks the bag to make sure the count is correct and
* resets the running total
**/
*
* @return the current total size
*/
protected int calcTotalSize() {
_total = extractList().size();
return _total;
@ -392,23 +416,26 @@ public abstract class DefaultMapBag implements Bag {
* Utility method for implementations to set the map that backs
* this bag. Not intended for interactive use outside of
* subclasses.
**/
protected void setMap(Map m) {
_map = m;
*/
protected void setMap(Map map) {
if (map == null || map.isEmpty() == false) {
throw new IllegalArgumentException("The map must be non-null and empty");
}
_map = map;
}
/**
* Utility method for implementations to access the map that backs
* this bag. Not intended for interactive use outside of
* subclasses.
**/
*/
protected Map getMap() {
return _map;
}
/**
* Create a list for use in iteration, etc.
**/
*/
private List extractList() {
List result = new ArrayList();
Iterator i = uniqueSet().iterator();
@ -422,15 +449,19 @@ public abstract class DefaultMapBag implements Bag {
}
/**
* Return number of modifications for iterator
**/
* Return number of modifications for iterator.
*
* @return the modification count
*/
private int modCount() {
return _mods;
}
/**
* Implement a toString() method suitable for debugging
**/
* Implement a toString() method suitable for debugging.
*
* @return a debugging toString
*/
public String toString() {
StringBuffer buf = new StringBuffer();
buf.append("[");
@ -448,7 +479,5 @@ public abstract class DefaultMapBag implements Bag {
buf.append("]");
return buf.toString();
}
}

View File

@ -1,13 +1,10 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/DefaultMapEntry.java,v 1.8 2002/08/15 20:04:31 pjack Exp $
* $Revision: 1.8 $
* $Date: 2002/08/15 20:04:31 $
*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/DefaultMapEntry.java,v 1.9 2003/05/16 14:24:54 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 1999-2002 The Apache Software Foundation. All rights
* Copyright (c) 2001-2003 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -23,11 +20,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
* any, must include the following acknowlegement:
* any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowlegement may appear in the software itself,
* if and wherever such third-party acknowlegements normally appear.
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@ -36,7 +33,7 @@
*
* 5. Products derived from this software may not be called "Apache"
* nor may "Apache" appear in their names without prior written
* permission of the Apache Group.
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
@ -62,16 +59,20 @@ package org.apache.commons.collections;
import java.util.Map;
/** A default implementation of {@link java.util.Map.Entry}
/**
* A default implementation of {@link java.util.Map.Entry}
*
* @since Commons Collections 1.0
* @version $Revision: 1.9 $ $Date: 2003/05/16 14:24:54 $
*
* @since 1.0
* @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
* @author <a href="mailto:mas@apache.org">Michael A. Smith</a>
*/
public class DefaultMapEntry implements Map.Entry {
/** The key */
private Object key;
/** The value */
private Object value;
/**
@ -96,7 +97,7 @@ public class DefaultMapEntry implements Map.Entry {
/**
* Implemented per API documentation of
* {@link java.util.Map.Entry#equals(Object)}
**/
*/
public boolean equals(Object o) {
if( o == null ) return false;
if( o == this ) return true;
@ -114,7 +115,7 @@ public class DefaultMapEntry implements Map.Entry {
/**
* Implemented per API documentation of
* {@link java.util.Map.Entry#hashCode()}
**/
*/
public int hashCode() {
return ( ( getKey() == null ? 0 : getKey().hashCode() ) ^
( getValue() == null ? 0 : getValue().hashCode() ) );
@ -134,7 +135,6 @@ public class DefaultMapEntry implements Map.Entry {
return key;
}
/**
* Returns the value.
*
@ -156,7 +156,8 @@ public class DefaultMapEntry implements Map.Entry {
this.key = key;
}
/** Note that this method only sets the local reference inside this object and
/**
* Note that this method only sets the local reference inside this object and
* does not modify the original Map.
*
* @return the old value of the value

View File

@ -1,13 +1,10 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/DoubleOrderedMap.java,v 1.3 2002/10/12 22:15:18 scolebourne Exp $
* $Revision: 1.3 $
* $Date: 2002/10/12 22:15:18 $
*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/DoubleOrderedMap.java,v 1.4 2003/05/16 14:24:54 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 1999-2002 The Apache Software Foundation. All rights
* Copyright (c) 2002-2003 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -23,11 +20,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
* any, must include the following acknowlegement:
* any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowlegement may appear in the software itself,
* if and wherever such third-party acknowlegements normally appear.
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@ -36,7 +33,7 @@
*
* 5. Products derived from this software may not be called "Apache"
* nor may "Apache" appear in their names without prior written
* permission of the Apache Group.
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
@ -58,11 +55,8 @@
* <http://www.apache.org/>.
*
*/
package org.apache.commons.collections;
import java.util.AbstractCollection;
import java.util.AbstractMap;
import java.util.AbstractSet;
@ -73,7 +67,6 @@ import java.util.Map;
import java.util.NoSuchElementException;
import java.util.Set;
/**
* Red-Black tree-based implementation of Map. This class guarantees
* that the map will be in both ascending key order and ascending
@ -140,38 +133,33 @@ import java.util.Set;
* Collection valuesByValue() returns the values in a Collection whose
* iterator will iterate over the values in ascending order.<p>
*
* @since 2.0
* @since Commons Collections 2.0
* @version $Revision: 1.4 $ $Date: 2003/05/16 14:24:54 $
*
* @author Marc Johnson (marcj at users dot sourceforge dot net)
*/
// final for performance
public final class DoubleOrderedMap extends AbstractMap {
// final for performance
private Node[] rootNode = new Node[]{ null,
null };
private int nodeCount = 0;
private int modifications = 0;
private Set[] setOfKeys = new Set[]{ null,
null };
private Set[] setOfEntries = new Set[]{ null,
null };
private Collection[] collectionOfValues = new Collection[]{
null,
null };
private static final int KEY = 0;
private static final int VALUE = 1;
private static final int SUM_OF_INDICES = KEY + VALUE;
private static final int FIRST_INDEX = 0;
private static final int NUMBER_OF_INDICES = 2;
private static final String[] dataName = new String[]{ "key",
"value"
};
private static final String[] dataName = new String[] { "key", "value" };
private Node[] rootNode = new Node[] { null, null };
private int nodeCount = 0;
private int modifications = 0;
private Set[] setOfKeys = new Set[] { null, null };
private Set[] setOfEntries = new Set[] { null, null };
private Collection[] collectionOfValues = new Collection[] { null, null };
/**
* Construct a new DoubleOrderedMap
*/
public DoubleOrderedMap() {}
public DoubleOrderedMap() {
}
/**
* Constructs a new DoubleOrderedMap from an existing Map, with keys and
@ -179,14 +167,14 @@ null };
*
* @param map the map whose mappings are to be placed in this map.
*
* @exception ClassCastException if the keys in the map are not
* @throws ClassCastException if the keys in the map are not
* Comparable, or are not mutually
* comparable; also if the values in
* the map are not Comparable, or
* are not mutually Comparable
* @exception NullPointerException if any key or value in the map
* @throws NullPointerException if any key or value in the map
* is null
* @exception IllegalArgumentException if there are duplicate keys
* @throws IllegalArgumentException if there are duplicate keys
* or duplicate values in the
* map
*/
@ -205,9 +193,9 @@ null };
* @return the key to which this map maps the specified value, or
* null if the map contains no mapping for this value.
*
* @exception ClassCastException if the value is of an
* @throws ClassCastException if the value is of an
* inappropriate type for this map.
* @exception NullPointerException if the value is null
* @throws NullPointerException if the value is null
*/
public Object getKeyForValue(final Object value)
throws ClassCastException, NullPointerException {
@ -847,8 +835,7 @@ null };
* @param insertedNode the node to be inserted
* @param index KEY or VALUE
*/
private void doRedBlackInsert(final Node insertedNode, final int index)
{
private void doRedBlackInsert(final Node insertedNode, final int index) {
Node currentNode = insertedNode;
@ -904,8 +891,7 @@ null };
makeRed(getGrandParent(currentNode, index), index);
if (getGrandParent(currentNode, index) != null) {
rotateLeft(getGrandParent(currentNode, index),
index);
rotateLeft(getGrandParent(currentNode, index), index);
}
}
}
@ -943,11 +929,9 @@ index);
rootNode[index] = replacement;
} else if (deletedNode
== deletedNode.getParent(index).getLeft(index)) {
deletedNode.getParent(index).setLeft(replacement,
index);
deletedNode.getParent(index).setLeft(replacement, index);
} else {
deletedNode.getParent(index).setRight(replacement,
index);
deletedNode.getParent(index).setRight(replacement, index);
}
deletedNode.setLeft(null, index);
@ -975,8 +959,7 @@ index);
if (deletedNode
== deletedNode.getParent(index)
.getLeft(index)) {
deletedNode.getParent(index).setLeft(null,
index);
deletedNode.getParent(index).setLeft(null, index);
} else {
deletedNode.getParent(index).setRight(null,
index);
@ -1016,9 +999,7 @@ index);
makeRed(getParent(currentNode, index), index);
rotateLeft(getParent(currentNode, index), index);
siblingNode = getRightChild(getParent(currentNode,
index),
index);
siblingNode = getRightChild(getParent(currentNode, index), index);
}
if (isBlack(getLeftChild(siblingNode, index), index)
@ -1034,8 +1015,7 @@ index),
rotateRight(siblingNode, index);
siblingNode =
getRightChild(getParent(currentNode, index),
index);
getRightChild(getParent(currentNode, index), index);
}
copyColor(getParent(currentNode, index), siblingNode,
@ -1047,23 +1027,18 @@ index),
currentNode = rootNode[index];
}
} else {
Node siblingNode = getLeftChild(getParent(currentNode,
index),
index);
Node siblingNode = getLeftChild(getParent(currentNode, index), index);
if (isRed(siblingNode, index)) {
makeBlack(siblingNode, index);
makeRed(getParent(currentNode, index), index);
rotateRight(getParent(currentNode, index), index);
siblingNode = getLeftChild(getParent(currentNode,
index),
index);
siblingNode = getLeftChild(getParent(currentNode, index), index);
}
if (isBlack(getRightChild(siblingNode, index), index)
&& isBlack(getLeftChild(siblingNode, index), index))
{
&& isBlack(getLeftChild(siblingNode, index), index)) {
makeRed(siblingNode, index);
currentNode = getParent(currentNode, index);
@ -1074,8 +1049,7 @@ index),
rotateLeft(siblingNode, index);
siblingNode =
getLeftChild(getParent(currentNode, index),
index);
getLeftChild(getParent(currentNode, index), index);
}
copyColor(getParent(currentNode, index), siblingNode,
@ -1203,8 +1177,8 @@ index),
* @param index KEY or VALUE (used to put the right word in the
* exception message)
*
* @exception NullPointerException if o is null
* @exception ClassCastException if o is not Comparable
* @throws NullPointerException if o is null
* @throws ClassCastException if o is not Comparable
*/
private static void checkNonNullComparable(final Object o,
final int index) {
@ -1225,8 +1199,8 @@ index),
*
* @param key the key to be checked
*
* @exception NullPointerException if key is null
* @exception ClassCastException if key is not Comparable
* @throws NullPointerException if key is null
* @throws ClassCastException if key is not Comparable
*/
private static void checkKey(final Object key) {
checkNonNullComparable(key, KEY);
@ -1237,8 +1211,8 @@ index),
*
* @param value the value to be checked
*
* @exception NullPointerException if value is null
* @exception ClassCastException if value is not Comparable
* @throws NullPointerException if value is null
* @throws ClassCastException if value is not Comparable
*/
private static void checkValue(final Object value) {
checkNonNullComparable(value, VALUE);
@ -1251,8 +1225,8 @@ index),
* @param key the key to be checked
* @param value the value to be checked
*
* @exception NullPointerException if key or value is null
* @exception ClassCastException if key or value is not Comparable
* @throws NullPointerException if key or value is null
* @throws ClassCastException if key or value is not Comparable
*/
private static void checkKeyAndValue(final Object key,
final Object value) {
@ -1294,7 +1268,7 @@ index),
*
* @param newNode the node to be inserted
*
* @exception IllegalArgumentException if the node already exists
* @throws IllegalArgumentException if the node already exists
* in the value mapping
*/
private void insertValue(final Node newNode)
@ -1355,9 +1329,9 @@ index),
* @return true if this map contains a mapping for the specified
* key.
*
* @exception ClassCastException if the key is of an inappropriate
* @throws ClassCastException if the key is of an inappropriate
* type for this map.
* @exception NullPointerException if the key is null
* @throws NullPointerException if the key is null
*/
public boolean containsKey(final Object key)
throws ClassCastException, NullPointerException {
@ -1392,9 +1366,9 @@ index),
* @return the value to which this map maps the specified key, or
* null if the map contains no mapping for this key.
*
* @exception ClassCastException if the key is of an inappropriate
* @throws ClassCastException if the key is of an inappropriate
* type for this map.
* @exception NullPointerException if the key is null
* @throws NullPointerException if the key is null
*/
public Object get(final Object key)
throws ClassCastException, NullPointerException {
@ -1411,12 +1385,12 @@ index),
*
* @return null
*
* @exception ClassCastException if the class of the specified key
* @throws ClassCastException if the class of the specified key
* or value prevents it from being
* stored in this map.
* @exception NullPointerException if the specified key or value
* @throws NullPointerException if the specified key or value
* is null
* @exception IllegalArgumentException if the key duplicates an
* @throws IllegalArgumentException if the key duplicates an
* existing key, or if the
* value duplicates an
* existing value
@ -1680,8 +1654,7 @@ index),
Node node = lookup((Comparable) entry.getKey(),
KEY);
if ((node != null) && node.getData(VALUE).equals(value))
{
if ((node != null) && node.getData(VALUE).equals(value)) {
doRedBlackDelete(node);
return true;
@ -1743,9 +1716,9 @@ index),
/**
* @return the next element in the iteration.
*
* @exception NoSuchElementException if iteration has no more
* @throws NoSuchElementException if iteration has no more
* elements.
* @exception ConcurrentModificationException if the
* @throws ConcurrentModificationException if the
* DoubleOrderedMap is
* modified behind
* the iterator's
@ -1777,12 +1750,12 @@ index),
* the iteration is in progress in any way other than by
* calling this method.
*
* @exception IllegalStateException if the next method has not
* @throws IllegalStateException if the next method has not
* yet been called, or the
* remove method has already
* been called after the last
* call to the next method.
* @exception ConcurrentModificationException if the
* @throws ConcurrentModificationException if the
* DoubleOrderedMap is
* modified behind
* the iterator's
@ -2000,7 +1973,7 @@ index),
*
* @return does not return
*
* @exception UnsupportedOperationException
* @throws UnsupportedOperationException
*/
public Object setValue(Object ignored)
throws UnsupportedOperationException {