java.lang.Object
omix.util.collections.WeakCollection<E>
- All Implemented Interfaces:
Cloneable
,Iterable<E>
,Collection<E>
public abstract class WeakCollection<E> extends Object implements Collection<E>, Cloneable
-
Method Summary
Modifier and Type Method Description boolean
addAll(Collection<? extends E> c)
void
forEach(Consumer<? super E> action)
Iterator<E>
iterator()
Stream<E>
parallelStream()
boolean
removeIf(Predicate<? super E> filter)
Spliterator<E>
spliterator()
Stream<E>
stream()
Object[]
toArray()
<T> T[]
toArray(T[] a)
-
Method Details
-
forEach
-
iterator
-
toArray
- Specified by:
toArray
in interfaceCollection<E>
-
toArray
public final <T> T[] toArray(T[] a)- Specified by:
toArray
in interfaceCollection<E>
-
addAll
- Specified by:
addAll
in interfaceCollection<E>
-
spliterator
- Specified by:
spliterator
in interfaceCollection<E>
- Specified by:
spliterator
in interfaceIterable<E>
-
stream
- Specified by:
stream
in interfaceCollection<E>
-
parallelStream
- Specified by:
parallelStream
in interfaceCollection<E>
-
removeIf
- Specified by:
removeIf
in interfaceCollection<E>
-