public abstract class ProcessQueueAbstract<T> extends AbstractQueue<T>
| Constructor and Description |
|---|
ProcessQueueAbstract(int knownSize) |
| Modifier and Type | Method and Description |
|---|---|
Iterator<T> |
iterator() |
boolean |
offer(T e) |
T |
peek() |
T |
poll() |
int |
size() |
protected abstract Class<T> |
typeClass() |
contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toStringpublic boolean offer(T e)
public T poll()
public T peek()
public Iterator<T> iterator()
iterator in interface Iterable<T>iterator in interface Collection<T>iterator in class AbstractCollection<T>public int size()
size in interface Collection<T>size in class AbstractCollection<T>Copyright © December 07, 2012-2014 The Internet Party. All Rights Reserved.