/** {@inheritDoc} */
 public boolean containsAll(TShortCollection collection) {
   TShortIterator iter = collection.iterator();
   while (iter.hasNext()) {
     if (!TByteShortHashMap.this.containsValue(iter.next())) {
       return false;
     }
   }
   return true;
 }
Ejemplo n.º 2
0
 /** {@inheritDoc} */
 public boolean containsAll(TShortCollection collection) {
   TShortIterator iter = collection.iterator();
   while (iter.hasNext()) {
     short element = iter.next();
     if (!contains(element)) {
       return false;
     }
   }
   return true;
 }
Ejemplo n.º 3
0
 /** {@inheritDoc} */
 public boolean removeAll(TShortCollection collection) {
   boolean changed = false;
   TShortIterator iter = collection.iterator();
   while (iter.hasNext()) {
     short element = iter.next();
     if (remove(element)) {
       changed = true;
     }
   }
   return changed;
 }
Ejemplo n.º 4
0
 public boolean retainAll(Collection<?> collection) {
   boolean modified = false;
   TShortIterator iter = iterator();
   while (iter.hasNext()) {
     if (!collection.contains(Short.valueOf(iter.next()))) {
       iter.remove();
       modified = true;
     }
   }
   return modified;
 }
 /** {@inheritDoc} */
 @SuppressWarnings({"SuspiciousMethodCalls"})
 public boolean retainAll(Collection<?> collection) {
   boolean modified = false;
   TShortIterator iter = iterator();
   while (iter.hasNext()) {
     if (!collection.contains(Short.valueOf(iter.next()))) {
       iter.remove();
       modified = true;
     }
   }
   return modified;
 }
 /** {@inheritDoc} */
 public boolean retainAll(TShortCollection collection) {
   if (this == collection) {
     return false;
   }
   boolean modified = false;
   TShortIterator iter = iterator();
   while (iter.hasNext()) {
     if (!collection.contains(iter.next())) {
       iter.remove();
       modified = true;
     }
   }
   return modified;
 }