E - public interface PCollection<E> extends Collection<E>
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(E o)
Deprecated.
|
boolean |
addAll(Collection<? extends E> c)
Deprecated.
|
void |
clear()
Deprecated.
|
PCollection<E> |
minus(Object e) |
PCollection<E> |
minusAll(Collection<?> list) |
PCollection<E> |
plus(E e) |
PCollection<E> |
plusAll(Collection<? extends E> list) |
boolean |
remove(Object o)
Deprecated.
|
boolean |
removeAll(Collection<?> c)
Deprecated.
|
boolean |
retainAll(Collection<?> c)
Deprecated.
|
contains, containsAll, equals, hashCode, isEmpty, iterator, parallelStream, removeIf, size, spliterator, stream, toArray, toArrayPCollection<E> plus(E e)
e - non-nullPCollection<E> plusAll(Collection<? extends E> list)
list - contains no null elementsPCollection<E> minus(Object e)
e - PCollection<E> minusAll(Collection<?> list)
list - @Deprecated boolean add(E o)
add in interface Collection<E>@Deprecated boolean remove(Object o)
remove in interface Collection<E>@Deprecated boolean addAll(Collection<? extends E> c)
addAll in interface Collection<E>@Deprecated boolean removeAll(Collection<?> c)
removeAll in interface Collection<E>@Deprecated boolean retainAll(Collection<?> c)
retainAll in interface Collection<E>@Deprecated void clear()
clear in interface Collection<E>Copyright © 2019. All rights reserved.