|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ChainableQueue<E>
Queue sub interface that makes it possible to 'chain' actions
| Method Summary | |
|---|---|
boolean |
add(E e)
Deprecated. |
boolean |
addAll(Collection<? extends E> c)
Deprecated. |
void |
clear()
Deprecated. |
ChainableQueue<E> |
delete(Object o)
|
ChainableQueue<E> |
deleteAll(Collection<?> c)
|
ChainableQueue<E> |
empty()
|
ChainableQueue<E> |
keepAll(Collection<?> c)
|
boolean |
offer(E e)
Deprecated. |
ChainableQueue<E> |
put(E e)
|
ChainableQueue<E> |
putAll(Collection<? extends E> c)
|
boolean |
remove(Object o)
Deprecated. |
boolean |
removeAll(Collection<?> c)
Deprecated. |
boolean |
retainAll(Collection<?> c)
Deprecated. |
ChainableQueue<E> |
set(E e)
|
| Methods inherited from interface java.util.Queue |
|---|
element, peek, poll, remove |
| Methods inherited from interface java.util.Collection |
|---|
contains, containsAll, equals, hashCode, isEmpty, iterator, size, toArray, toArray |
| Method Detail |
|---|
ChainableQueue<E> delete(Object o)
o -
Collection.remove(Object)ChainableQueue<E> deleteAll(Collection<?> c)
c -
Collection.removeAll(Collection)ChainableQueue<E> empty()
Collection.clear()ChainableQueue<E> keepAll(Collection<?> c)
c -
Collection.retainAll(Collection)ChainableQueue<E> put(E e)
e -
Queue.add(Object)ChainableQueue<E> putAll(Collection<? extends E> c)
c -
Collection.addAll(Collection)ChainableQueue<E> set(E e)
e -
Queue.offer(Object)@Deprecated boolean add(E e)
add in interface Collection<E>add in interface Queue<E>put(Object)@Deprecated boolean addAll(Collection<? extends E> c)
addAll in interface Collection<E>putAll(Collection)@Deprecated void clear()
clear in interface Collection<E>empty()@Deprecated boolean offer(E e)
offer in interface Queue<E>set(Object)@Deprecated boolean remove(Object o)
remove in interface Collection<E>delete(Object)@Deprecated boolean removeAll(Collection<?> c)
removeAll in interface Collection<E>deleteAll(Collection)@Deprecated boolean retainAll(Collection<?> c)
retainAll in interface Collection<E>keepAll(Collection)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||