Package one.microstream.collections.old
Class BridgeXCollection<E>
java.lang.Object
one.microstream.collections.old.BridgeXCollection<E>
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,OldCollection<E>
- Direct Known Subclasses:
LockedCollection.OldMutexCollection
,SynchCollection.OldSynchCollection
public class BridgeXCollection<E> extends Object implements OldCollection<E>
-
Constructor Summary
Constructors Constructor Description BridgeXCollection()
-
Method Summary
Modifier and Type Method Description boolean
add(E e)
boolean
addAll(Collection<? extends E> c)
void
clear()
boolean
contains(Object o)
boolean
containsAll(Collection<?> c)
boolean
isEmpty()
Iterator<E>
iterator()
XCollection<E>
parent()
boolean
remove(Object o)
boolean
removeAll(Collection<?> c)
boolean
retainAll(Collection<?> c)
int
size()
Object[]
toArray()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
Constructor Details
-
BridgeXCollection
public BridgeXCollection()
-
-
Method Details
-
parent
- Specified by:
parent
in interfaceOldCollection<E>
-
add
- Specified by:
add
in interfaceCollection<E>
-
addAll
- Specified by:
addAll
in interfaceCollection<E>
-
clear
public void clear()- Specified by:
clear
in interfaceCollection<E>
-
contains
- Specified by:
contains
in interfaceCollection<E>
-
containsAll
- Specified by:
containsAll
in interfaceCollection<E>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCollection<E>
-
iterator
-
remove
- Specified by:
remove
in interfaceCollection<E>
-
removeAll
- Specified by:
removeAll
in interfaceCollection<E>
-
retainAll
- Specified by:
retainAll
in interfaceCollection<E>
-
size
public int size()- Specified by:
size
in interfaceCollection<E>
-
toArray
- Specified by:
toArray
in interfaceCollection<E>
-