Package one.microstream.collections.old
Class AbstractBridgeXSet<E>
- java.lang.Object
-
- one.microstream.collections.old.AbstractOldGettingSet<E>
-
- one.microstream.collections.old.AbstractBridgeXSet<E>
-
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,Set<E>
,OldCollection<E>
,OldSet<E>
- Direct Known Subclasses:
EqHashEnum.OldVarSet
,EqHashTable.Keys.OldKeys
,HashEnum.OldVarSet
,HashTable.Keys.OldKeys
,MutexSet.OldMutexSet
,SynchSet.OldSynchSet
public abstract class AbstractBridgeXSet<E> extends AbstractOldGettingSet<E>
-
-
Constructor Summary
Constructors Constructor Description AbstractBridgeXSet()
-
Method Summary
Modifier and Type Method Description boolean
add(E e)
boolean
addAll(Collection<? extends E> c)
void
clear()
XSet<E>
parent()
boolean
removeAll(Collection<?> c)
boolean
retainAll(Collection<?> c)
-
Methods inherited from class one.microstream.collections.old.AbstractOldGettingSet
contains, containsAll, isEmpty, iterator, remove, size, toArray, toString
-
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 XSet<E> parent()
- Specified by:
parent
in interfaceOldCollection<E>
- Specified by:
parent
in interfaceOldSet<E>
- Overrides:
parent
in classAbstractOldGettingSet<E>
-
add
public boolean add(E e)
- Specified by:
add
in interfaceCollection<E>
- Specified by:
add
in interfaceSet<E>
- Overrides:
add
in classAbstractOldGettingSet<E>
-
addAll
public boolean addAll(Collection<? extends E> c)
- Specified by:
addAll
in interfaceCollection<E>
- Specified by:
addAll
in interfaceSet<E>
- Overrides:
addAll
in classAbstractOldGettingSet<E>
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection<E>
- Specified by:
clear
in interfaceSet<E>
- Overrides:
clear
in classAbstractOldGettingSet<E>
-
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAll
in interfaceCollection<E>
- Specified by:
removeAll
in interfaceSet<E>
- Overrides:
removeAll
in classAbstractOldGettingSet<E>
-
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAll
in interfaceCollection<E>
- Specified by:
retainAll
in interfaceSet<E>
- Overrides:
retainAll
in classAbstractOldGettingSet<E>
-
-