org.eclipse.osgi.internal.serviceregistry
Class ShrinkableCollection<E>
java.lang.Object
org.eclipse.osgi.internal.serviceregistry.ShrinkableCollection<E>
- All Implemented Interfaces:
- java.lang.Iterable<E>, java.util.Collection<E>
public class ShrinkableCollection<E>
- extends java.lang.Object
- implements java.util.Collection<E>
A Shrinkable Collection. This class provides a wrapper for a list of collections
that allows items to be removed from the wrapped collections (shrinking) but
does not allow items to be added to the wrapped collections.
The collections must act as sets in that each collection in the list
must not have two entries which are equal.
All the optional Collection operations except
add and addAll are supported. Attempting to add to the
collection will result in an UnsupportedOperationException.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.Collection |
equals, hashCode |
ShrinkableCollection
public ShrinkableCollection(java.util.Collection<? extends E> c)
ShrinkableCollection
public ShrinkableCollection(java.util.Collection<? extends E> c1,
java.util.Collection<? extends E> c2)
ShrinkableCollection
public ShrinkableCollection(java.util.List<java.util.Collection<? extends E>> l)
add
public boolean add(E e)
- Specified by:
add in interface java.util.Collection<E>
addAll
public boolean addAll(java.util.Collection<? extends E> c)
- Specified by:
addAll in interface java.util.Collection<E>
clear
public void clear()
- Specified by:
clear in interface java.util.Collection<E>
contains
public boolean contains(java.lang.Object o)
- Specified by:
contains in interface java.util.Collection<E>
containsAll
public boolean containsAll(java.util.Collection<?> c)
- Specified by:
containsAll in interface java.util.Collection<E>
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty in interface java.util.Collection<E>
iterator
public java.util.Iterator<E> iterator()
- Specified by:
iterator in interface java.lang.Iterable<E>- Specified by:
iterator in interface java.util.Collection<E>
remove
public boolean remove(java.lang.Object o)
- Specified by:
remove in interface java.util.Collection<E>
removeAll
public boolean removeAll(java.util.Collection<?> c)
- Specified by:
removeAll in interface java.util.Collection<E>
retainAll
public boolean retainAll(java.util.Collection<?> c)
- Specified by:
retainAll in interface java.util.Collection<E>
size
public int size()
- Specified by:
size in interface java.util.Collection<E>
toArray
public java.lang.Object[] toArray()
- Specified by:
toArray in interface java.util.Collection<E>
toArray
public <T> T[] toArray(T[] var0)
- Specified by:
toArray in interface java.util.Collection<E>
toString
public java.lang.String toString()
- Overrides:
toString in class java.lang.Object
Copyright © 2007-2012 FuseSource, Corp.. All Rights Reserved.