public class FIFOQueue extends Object implements Collection, Queue
| Modifier and Type | Class and Description |
|---|---|
class |
FIFOQueue.QueueIterator |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(Object o) |
boolean |
addAll(Collection c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection c) |
Object |
deq() |
void |
enq(Object element) |
boolean |
isEmpty() |
boolean |
isFull() |
Iterator |
iterator() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection c) |
boolean |
retainAll(Collection c) |
int |
size() |
Object[] |
toArray() |
Object[] |
toArray(Object[] a) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitequals, hashCode, parallelStream, removeIf, spliterator, streampublic int size()
size in interface Collectionpublic void clear()
clear in interface Collectionclear in interface Queuepublic boolean isEmpty()
isEmpty in interface CollectionisEmpty in interface Queuepublic boolean isFull()
public Object[] toArray()
toArray in interface Collectionpublic boolean add(Object o)
add in interface Collectionpublic boolean contains(Object o)
contains in interface Collectionpublic boolean remove(Object o)
remove in interface Collectionpublic boolean addAll(Collection c)
addAll in interface Collectionpublic boolean containsAll(Collection c)
containsAll in interface Collectionpublic boolean removeAll(Collection c)
removeAll in interface Collectionpublic boolean retainAll(Collection c)
retainAll in interface Collectionpublic Iterator iterator()
iterator in interface Iterableiterator in interface Collectionpublic Object[] toArray(Object[] a)
toArray in interface CollectionCopyright © 1996–2019 Geotools. All rights reserved.