Package ghidra.util.datastruct
Class QueueStub<E>
- java.lang.Object
 - 
- ghidra.util.datastruct.QueueStub<E>
 
 
- 
- Type Parameters:
 E- the element type
- All Implemented Interfaces:
 java.lang.Iterable<E>,java.util.Collection<E>,java.util.Queue<E>
public class QueueStub<E> extends java.lang.Object implements java.util.Queue<E>A do-nothing, stubbed version of theQueueinterface. 
- 
- 
Constructor Summary
Constructors Constructor Description QueueStub() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(E e)booleanaddAll(java.util.Collection<? extends E> c)voidclear()booleancontains(java.lang.Object o)booleancontainsAll(java.util.Collection<?> c)Eelement()booleanisEmpty()java.util.Iterator<E>iterator()booleanoffer(E e)Epeek()Epoll()Eremove()booleanremove(java.lang.Object o)booleanremoveAll(java.util.Collection<?> c)booleanretainAll(java.util.Collection<?> c)intsize()java.lang.Object[]toArray()<T> T[]toArray(T[] a)- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
 - 
 
 - 
 
- 
- 
Method Detail
- 
size
public int size()
- Specified by:
 sizein interfacejava.util.Collection<E>
 
- 
isEmpty
public boolean isEmpty()
- Specified by:
 isEmptyin interfacejava.util.Collection<E>
 
- 
contains
public boolean contains(java.lang.Object o)
- Specified by:
 containsin interfacejava.util.Collection<E>
 
- 
iterator
public java.util.Iterator<E> iterator()
 
- 
toArray
public java.lang.Object[] toArray()
- Specified by:
 toArrayin interfacejava.util.Collection<E>
 
- 
toArray
public <T> T[] toArray(T[] a)
- Specified by:
 toArrayin interfacejava.util.Collection<E>
 
- 
remove
public boolean remove(java.lang.Object o)
- Specified by:
 removein interfacejava.util.Collection<E>
 
- 
containsAll
public boolean containsAll(java.util.Collection<?> c)
- Specified by:
 containsAllin interfacejava.util.Collection<E>
 
- 
addAll
public boolean addAll(java.util.Collection<? extends E> c)
- Specified by:
 addAllin interfacejava.util.Collection<E>
 
- 
removeAll
public boolean removeAll(java.util.Collection<?> c)
- Specified by:
 removeAllin interfacejava.util.Collection<E>
 
- 
retainAll
public boolean retainAll(java.util.Collection<?> c)
- Specified by:
 retainAllin interfacejava.util.Collection<E>
 
- 
clear
public void clear()
- Specified by:
 clearin interfacejava.util.Collection<E>
 
- 
add
public boolean add(E e)
 
 - 
 
 -