Package one.microstream.collections.old
Class AbstractOldGettingSet<E>
- java.lang.Object
-
- one.microstream.collections.old.AbstractOldGettingSet<E>
-
- All Implemented Interfaces:
Iterable<E>,Collection<E>,Set<E>,OldCollection<E>,OldSet<E>
- Direct Known Subclasses:
AbstractBridgeXSet,ConstLinearEnum.OldConstEnum,EnumView.OldEnumView,SetView.OldSetView
public abstract class AbstractOldGettingSet<E> extends Object implements OldSet<E>
-
-
Constructor Summary
Constructors Constructor Description AbstractOldGettingSet()
-
Method Summary
Modifier and Type Method Description booleanadd(E e)booleanaddAll(Collection<? extends E> c)voidclear()booleancontains(Object o)booleancontainsAll(Collection<?> c)booleanisEmpty()Iterator<E>iterator()XGettingSet<E>parent()booleanremove(Object o)booleanremoveAll(Collection<?> c)booleanretainAll(Collection<?> c)intsize()Object[]toArray()StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface one.microstream.collections.old.OldCollection
bla, toArray
-
Methods inherited from interface java.util.Set
equals, hashCode, spliterator, toArray
-
-
-
-
Method Detail
-
parent
public XGettingSet<E> parent()
-
add
public boolean add(E e) throws UnsupportedOperationException
- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceSet<E>- Throws:
UnsupportedOperationException
-
addAll
public boolean addAll(Collection<? extends E> c) throws UnsupportedOperationException
- Specified by:
addAllin interfaceCollection<E>- Specified by:
addAllin interfaceSet<E>- Throws:
UnsupportedOperationException
-
clear
public void clear() throws UnsupportedOperationException- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceSet<E>- Throws:
UnsupportedOperationException
-
contains
public boolean contains(Object o)
-
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAllin interfaceCollection<E>- Specified by:
containsAllin interfaceSet<E>
-
isEmpty
public boolean isEmpty()
-
remove
public boolean remove(Object o) throws UnsupportedOperationException
- Specified by:
removein interfaceCollection<E>- Specified by:
removein interfaceSet<E>- Throws:
UnsupportedOperationException
-
removeAll
public boolean removeAll(Collection<?> c) throws UnsupportedOperationException
- Specified by:
removeAllin interfaceCollection<E>- Specified by:
removeAllin interfaceSet<E>- Throws:
UnsupportedOperationException
-
retainAll
public boolean retainAll(Collection<?> c) throws UnsupportedOperationException
- Specified by:
retainAllin interfaceCollection<E>- Specified by:
retainAllin interfaceSet<E>- Throws:
UnsupportedOperationException
-
size
public int size()
-
toArray
public Object[] toArray()
-
-