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